1- import * as React from " react"
1+ import * as React from ' react'
22
3- import { cn } from " @/lib/utils"
3+ import { cn } from ' @/lib/utils'
44
55const Card = React . forwardRef <
66 HTMLDivElement ,
@@ -9,25 +9,25 @@ const Card = React.forwardRef<
99 < div
1010 ref = { ref }
1111 className = { cn (
12- " rounded-lg border bg-card text-card-foreground shadow-sm" ,
12+ ' rounded-lg border bg-card text-card-foreground shadow-sm' ,
1313 className
1414 ) }
1515 { ...props }
1616 />
1717) )
18- Card . displayName = " Card"
18+ Card . displayName = ' Card'
1919
2020const CardHeader = React . forwardRef <
2121 HTMLDivElement ,
2222 React . HTMLAttributes < HTMLDivElement >
2323> ( ( { className, ...props } , ref ) => (
2424 < div
2525 ref = { ref }
26- className = { cn ( " flex flex-col space-y-1.5 p-6" , className ) }
26+ className = { cn ( ' flex flex-col space-y-1.5 p-6' , className ) }
2727 { ...props }
2828 />
2929) )
30- CardHeader . displayName = " CardHeader"
30+ CardHeader . displayName = ' CardHeader'
3131
3232const CardTitle = React . forwardRef <
3333 HTMLDivElement ,
@@ -36,44 +36,44 @@ const CardTitle = React.forwardRef<
3636 < div
3737 ref = { ref }
3838 className = { cn (
39- " text-2xl font-semibold leading-none tracking-tight" ,
39+ ' text-2xl font-semibold leading-none tracking-tight' ,
4040 className
4141 ) }
4242 { ...props }
4343 />
4444) )
45- CardTitle . displayName = " CardTitle"
45+ CardTitle . displayName = ' CardTitle'
4646
4747const CardDescription = React . forwardRef <
4848 HTMLDivElement ,
4949 React . HTMLAttributes < HTMLDivElement >
5050> ( ( { className, ...props } , ref ) => (
5151 < div
5252 ref = { ref }
53- className = { cn ( " text-sm text-muted-foreground" , className ) }
53+ className = { cn ( ' text-sm text-muted-foreground' , className ) }
5454 { ...props }
5555 />
5656) )
57- CardDescription . displayName = " CardDescription"
57+ CardDescription . displayName = ' CardDescription'
5858
5959const CardContent = React . forwardRef <
6060 HTMLDivElement ,
6161 React . HTMLAttributes < HTMLDivElement >
6262> ( ( { className, ...props } , ref ) => (
63- < div ref = { ref } className = { cn ( " p-6 pt-0" , className ) } { ...props } />
63+ < div ref = { ref } className = { cn ( ' p-6 pt-0' , className ) } { ...props } />
6464) )
65- CardContent . displayName = " CardContent"
65+ CardContent . displayName = ' CardContent'
6666
6767const CardFooter = React . forwardRef <
6868 HTMLDivElement ,
6969 React . HTMLAttributes < HTMLDivElement >
7070> ( ( { className, ...props } , ref ) => (
7171 < div
7272 ref = { ref }
73- className = { cn ( " flex items-center p-6 pt-0" , className ) }
73+ className = { cn ( ' flex items-center p-6 pt-0' , className ) }
7474 { ...props }
7575 />
7676) )
77- CardFooter . displayName = " CardFooter"
77+ CardFooter . displayName = ' CardFooter'
7878
7979export { Card , CardHeader , CardFooter , CardTitle , CardDescription , CardContent }
0 commit comments