Function
DialogHeader
({ className, ...props }: React.ComponentProps<'div'>)
Source from the content-addressed store, hash-verified
| 138 | } |
| 139 | |
| 140 | function DialogHeader({ className, ...props }: React.ComponentProps<'div'>) { |
| 141 | return ( |
| 142 | <div |
| 143 | data-slot="dialog-header" |
| 144 | className={cn('flex flex-col gap-2 text-center sm:text-left', className)} |
| 145 | {...props} |
| 146 | /> |
| 147 | ); |
| 148 | } |
| 149 | |
| 150 | function DialogFooter({ className, ...props }: React.ComponentProps<'div'>) { |
| 151 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected