import { cn } from '@/lib/utils'; interface VideoProps { src: string; caption?: string; poster?: string; autoPlay?: boolean; loop?: boolean; muted?: boolean; controls?: boolean; className?: string; } export function Video({ src, caption, poster, autoPlay = false, loop = true, muted = true, controls = true, className, }: VideoProps) { return (
); }