zed/styles/src/component/button.ts
2023-08-14 15:13:57 -04:00

6 lines
157 B
TypeScript

export const ButtonVariant = {
Default: 'default',
Ghost: 'ghost'
} as const
export type Variant = typeof ButtonVariant[keyof typeof ButtonVariant]