button.ts

1export const ButtonVariant = {
2    Default: 'default',
3    Ghost: 'ghost'
4} as const
5
6export type Variant = typeof ButtonVariant[keyof typeof ButtonVariant]