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://images.unsplash.com/photo-1616763355548-1b606f439f86?auto=format&fit=crop&w=1200&q=80"11 alt="Video call interface on a laptop screen"12 />13 </AspectRatio>14 );15}