| 4 | type IconSize = 'sm' | 'md' | 'lg' | 'xl' | 'xxl'; |
| 5 | |
| 6 | interface BaseIconButtonProps { |
| 7 | size?: IconSize; |
| 8 | className?: string; |
| 9 | iconClassName?: string; |
| 10 | disabledClassName?: string; |
| 11 | title?: string; |
| 12 | disabled?: boolean; |
| 13 | onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void; |
| 14 | } |
| 15 | |
| 16 | type IconButtonWithoutChildrenProps = { |
| 17 | icon: string; |
nothing calls this directly
no outgoing calls
no test coverage detected