| size |
`ChipSize` enum |
Specifies the size of the chip. Has two options: `large` and `small` |
small |
| disabled |
boolean |
Indicates whether the chip is disabled |
false |
| clickable |
boolean |
Specifies whether the chip is clickable |
true |
| label |
string |
Represents the text content or label inside the chip |
|
| maxWidth |
string |
Specifies the maximum width of the chip |
200px |
| variant |
`ChipVariant` enum |
Specifies the visual style or variant of the chip. Has four options: `regular`, `highlighted`, `transparent`, and `rounded` |
regular |
| accent |
`ChipAccent` enum |
Determines the text color or accent color of the chip. Has two options: `text-primary` and `text-secondary` |
text-primary |
| leftComponent |
`React.ReactNode` |
An optional React/node component that you can place on the left side of the chip |
|
| rightComponent |
`React.ReactNode` |
An optional React/node component that you can place on the right side of the chip |
|
| className |
string |
An optional class name to apply additional custom styles to the chip |
|