({ className, ...props }: React.ComponentProps<"div">)
| 46 | } |
| 47 | |
| 48 | function FrameTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 49 | return ( |
| 50 | <div |
| 51 | className={cn("font-semibold text-sm", className)} |
| 52 | data-slot="frame-panel-title" |
| 53 | {...props} |
| 54 | /> |
| 55 | ); |
| 56 | } |
| 57 | |
| 58 | function FrameDescription({ |
| 59 | className, |