File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
apps/playground-web/src/components/ui Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const CardTitle = React.forwardRef<
3636 < div
3737 ref = { ref }
3838 className = { cn (
39- "text-2xl font-semibold leading-none tracking-tight" ,
39+ "font-semibold text-2xl leading-none tracking-tight" ,
4040 className ,
4141 ) }
4242 { ...props }
@@ -50,7 +50,7 @@ const CardDescription = React.forwardRef<
5050> ( ( { className, ...props } , ref ) => (
5151 < div
5252 ref = { ref }
53- className = { cn ( "text-sm text- muted-foreground" , className ) }
53+ className = { cn ( "text-muted-foreground text-sm " , className ) }
5454 { ...props }
5555 />
5656) ) ;
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ const TableCaption = React.forwardRef<
9999> ( ( { className, ...props } , ref ) => (
100100 < caption
101101 ref = { ref }
102- className = { cn ( "mt-4 text-sm text- muted-foreground" , className ) }
102+ className = { cn ( "mt-4 text-muted-foreground text-sm " , className ) }
103103 { ...props }
104104 />
105105) ) ;
You can’t perform that action at this time.
0 commit comments