10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
export const ChipVariant = {
|
|
Highlighted: 'highlighted',
|
|
Regular: 'regular',
|
|
Transparent: 'transparent',
|
|
Rounded: 'rounded',
|
|
Static: 'static',
|
|
} as const;
|
|
|
|
export type ChipVariant = (typeof ChipVariant)[keyof typeof ChipVariant];
|