| 41 | } satisfies Variants; |
| 42 | |
| 43 | interface DialogButtonProps { |
| 44 | type: 'primary' | 'secondary' | 'danger'; |
| 45 | children: ReactNode; |
| 46 | onClick?: (event: React.UIEvent) => void; |
| 47 | } |
| 48 | |
| 49 | export const DialogButton = memo(({ type, children, onClick }: DialogButtonProps) => { |
| 50 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected