| 7 | img?: string; |
| 8 | } |
| 9 | export interface CustomButtonProps extends Omit<TooltipProps, 'children'> { |
| 10 | label: string; |
| 11 | title?: string; |
| 12 | loading?: boolean; |
| 13 | variant?: 'contained' | 'outlined' | 'text'; |
| 14 | icon?: React.ReactNode; |
| 15 | disabled?: boolean; |
| 16 | color?: 'primary' | 'success' | 'info' | 'warning' | 'error' | 'inherit'; |
| 17 | size?: 'small' | 'medium' | 'large'; |
| 18 | href?: string; |
| 19 | onClick?: () => void; |
| 20 | } |
| 21 | |
| 22 | type BusTicketType = { |
| 23 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected