Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1export const ButtonVariant = { 2 Default: 'default', 3 Ghost: 'ghost' 4} as const 5 6export type Variant = typeof ButtonVariant[keyof typeof ButtonVariant]