types(Chip): add missing fields

This commit is contained in:
Benjamin Canac
2024-01-15 14:47:04 +01:00
parent 4405d3239f
commit e0977b2933

View File

@@ -6,6 +6,10 @@ export type ChipColor = 'gray' | typeof colors[number]
export type ChipPosition = keyof typeof chip.position
export interface Chip {
size?: ChipSize
color?: ChipColor
position?: ChipPosition
text?: string
inset?: boolean
show?: boolean
}