({ className, ...props }: ButtonProps)
| 28 | } |
| 29 | |
| 30 | const DialogTrigger = ({ className, ...props }: ButtonProps) => ( |
| 31 | <PrimitiveButton className={cx('cursor-pointer', className)} {...props} /> |
| 32 | ) |
| 33 | |
| 34 | interface DialogHeaderProps extends Omit<React.ComponentProps<'div'>, 'title'> { |
| 35 | title?: string |