| 2 | import ReactToolbox from "../index"; |
| 3 | |
| 4 | export interface ChipTheme { |
| 5 | /** |
| 6 | * Added to the root element when the component includes an avatar. |
| 7 | */ |
| 8 | avatar?: string; |
| 9 | /** |
| 10 | * Used for the root element. |
| 11 | */ |
| 12 | chip?: string; |
| 13 | /** |
| 14 | * Added to the root element when the component is deletable. |
| 15 | */ |
| 16 | deletable?: string; |
| 17 | /** |
| 18 | * Used for the delete element wrapper. |
| 19 | */ |
| 20 | delete?: string; |
| 21 | /** |
| 22 | * Used for the delete icon. |
| 23 | */ |
| 24 | deleteIcon?: string; |
| 25 | /** |
| 26 | * Used for the delete svg inner layer. |
| 27 | */ |
| 28 | deleteX?: string; |
| 29 | } |
| 30 | |
| 31 | interface ChipProps extends ReactToolbox.Props { |
| 32 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected