shadcn-vue/apps/www/src/lib/registry/styles.ts
zernonia b2caaca1e2
feat: stackblitz/codesandbox editor (#130)
* feat: stackblitz editor

* chore: update lockfile

* fix: cant fetch ?raw dynamically after bundling

* feat: add codesandbox
2023-10-21 21:21:46 +08:00

13 lines
192 B
TypeScript

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