forked from cerc-io/snowballtools-base
19 lines
390 B
TypeScript
19 lines
390 B
TypeScript
import { VariantProps, tv } from 'tailwind-variants';
|
|
|
|
export const stepsTheme = tv({
|
|
slots: {
|
|
root: [],
|
|
},
|
|
variants: {
|
|
orientation: {
|
|
vertical: { root: ['flex', 'flex-col'] },
|
|
horizontal: { root: ['flex', 'items-center', 'gap-1'] },
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
orientation: 'vertical',
|
|
},
|
|
});
|
|
|
|
export type StepsTheme = VariantProps<typeof stepsTheme>;
|