import { cn } from "@/lib/utils" import { VideoInfo } from "@/types" export function VideoCard({ video, className = "", }: { video: VideoInfo className?: string }) { return (

{video.label}

) }