shadcn-vue/apps/www/registry/registry-styles.ts
2024-11-21 11:52:31 +08:00

14 lines
228 B
TypeScript

export const styles = [
{
name: 'new-york',
label: 'New York',
},
{
name: 'default',
label: 'Default',
},
] as const
export type Style = (typeof styles)[number]
export type RegistryStyle = Style['name']