| 27 | ); |
| 28 | |
| 29 | export interface TagVariants { |
| 30 | /** The variant of the tag. */ |
| 31 | variant?: 'primary' | 'secondary' | 'outlined' | 'success' | 'error' | 'warning'; |
| 32 | startAdornment: boolean; |
| 33 | endAdornment: boolean; |
| 34 | } |
| 35 | |
| 36 | export interface TagProps |
| 37 | extends HTMLAttributes<HTMLSpanElement>, |
nothing calls this directly
no outgoing calls
no test coverage detected