mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 08:58:36 +00:00
13 lines
186 B
TypeScript
13 lines
186 B
TypeScript
export const styles = [
|
|
{
|
|
name: "default",
|
|
label: "Default",
|
|
},
|
|
{
|
|
name: "new-york",
|
|
label: "New York",
|
|
},
|
|
] as const
|
|
|
|
export type Style = (typeof styles)[number]
|