Files
twenty/packages/twenty-website-new/src/sections/AppPreview/Shared/utils/chip-variant.ts
T

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];