| 3 | |
| 4 | type ButtonType = 'default' | 'primary' | 'text' |
| 5 | export interface Button { |
| 6 | disabled?: boolean |
| 7 | children?: React.ReactNode |
| 8 | htmlType?: 'button' | 'submit' | 'reset' |
| 9 | type?: 'primary' | 'default' | 'text' |
| 10 | icon?: React.ReactNode |
| 11 | shape?: 'circle' | 'round' |
| 12 | size?: 'small' | 'default' | 'large' |
| 13 | } |
| 14 | |
| 15 | const StyledButton = styled.button( |
| 16 | ({ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…