Function
CanvasDialogBody
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 148 | |
| 149 | // Canvas dialog body (content area) |
| 150 | const CanvasDialogBody = ({ |
| 151 | className, |
| 152 | ...props |
| 153 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 154 | <div className={cn("px-5 pb-5", className)} {...props} /> |
| 155 | ) |
| 156 | CanvasDialogBody.displayName = "CanvasDialogBody" |
| 157 | |
| 158 | // Canvas dialog footer with muted background |
Callers
nothing calls this directly
Tested by
no test coverage detected