examples/aspect-ratio-video.tsx
1import {2 AspectRatio,3 AspectRatioImage,4} from "@/components/wensity/aspect-ratio";56export function AspectRatioVideo() {7 return (8 <AspectRatio variant="video" className="max-w-md">9 <AspectRatioImage10 src="https://assets.wensity.com/photos/landscape/canyon-falls.webp"11 alt="Waterfall dropping through a green canyon"12 />13 </AspectRatio>14 );15}