Aspect Ratio
Aspect Ratio is a React and Tailwind CSS layout component from HextaUI, licensed MIT. Copy it and paste it into your project.
HextaUI
MIT
layout
What it is
Aspect Ratio is a React and Tailwind CSS layout component from HextaUI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i @radix-ui/react-aspect-ratio
Licence
This component comes from HextaUI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Aspect Ratio
"use client";
import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio";
import * as React from "react";
import { cn } from "@/lib/utils";
type AspectRatioProps = React.ComponentProps<typeof AspectRatioPrimitive.Root>;
const AspectRatio = React.forwardRef<
React.ComponentRef<typeof AspectRatioPrimitive.Root>,
AspectRatioProps
>(function AspectRatio({ className, ...props }, ref) {
return (
<AspectRatioPrimitive.Root
className={cn("touch-manipulation", className)}
data-slot="aspect-ratio"
ref={ref}
{...props}
/>
);
});
export { AspectRatio };