Function
FrameHeader
({ className, ...props }: React.ComponentProps<"header">)
Source from the content-addressed store, hash-verified
| 36 | } |
| 37 | |
| 38 | function FrameHeader({ className, ...props }: React.ComponentProps<"header">) { |
| 39 | return ( |
| 40 | <header |
| 41 | className={cn("flex flex-col px-5 py-4", className)} |
| 42 | data-slot="frame-panel-header" |
| 43 | {...props} |
| 44 | /> |
| 45 | ); |
| 46 | } |
| 47 | |
| 48 | function FrameTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 49 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected