Function
CanvasDialogHeader
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 139 | |
| 140 | // Canvas dialog header (no border, just padding) |
| 141 | const CanvasDialogHeader = ({ |
| 142 | className, |
| 143 | ...props |
| 144 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 145 | <div className={cn("px-5 py-4", className)} {...props} /> |
| 146 | ) |
| 147 | CanvasDialogHeader.displayName = "CanvasDialogHeader" |
| 148 | |
| 149 | // Canvas dialog body (content area) |
Callers
nothing calls this directly
Tested by
no test coverage detected