mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-11 21:00:35 +00:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
|
export const ButtonVariant = {
|
||
|
Default: 'default',
|
||
|
Ghost: 'ghost'
|
||
|
} as const
|
||
|
|
||
|
export type Variant = typeof ButtonVariant[keyof typeof ButtonVariant]
|