zed/styles/src/component/button.ts

7 lines
157 B
TypeScript
Raw Normal View History

2023-08-14 19:13:57 +00:00
export const ButtonVariant = {
Default: 'default',
Ghost: 'ghost'
} as const
export type Variant = typeof ButtonVariant[keyof typeof ButtonVariant]