File size: 537 Bytes
1f122c3
f62b8d3
1f122c3
 
 
 
 
f62b8d3
1f122c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { cn } from "@/lib/utils"
import { VideoInfo } from "@/types"

export function VideoCard({
  video,
  className = "",
}: {
  video: VideoInfo
  className?: string
 }) {

  return (
  <div
    className={cn(
      `flex flex-col`,
      `w-[300px] h-[400px]`,
      `bg-line-900`,
      className,
    )}>
      <div
        className={cn(
          `rounded-lg overflow-hidden`
        )}
      >
        <img src="" />
      </div>
      <div className={cn(

      )}>
        <h3>{video.label}</h3>
      </div>
    </div>
  )
}