| 6 | // ───────────────────────────────────────────────────────────────────────────── |
| 7 | |
| 8 | export interface TCalloutElement extends TElement { |
| 9 | backgroundColor?: string; |
| 10 | icon?: string; |
| 11 | variant?: |
| 12 | | (string & {}) |
| 13 | | 'error' |
| 14 | | 'info' |
| 15 | | 'note' |
| 16 | | 'success' |
| 17 | | 'tip' |
| 18 | | 'warning'; |
| 19 | } |
| 20 | |
| 21 | export type TTagProps = { value: string } & UnknownObject; |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…