fix: make direction one variant

This commit is contained in:
p-sw 2024-05-29 20:59:35 +09:00
parent 776429b6a9
commit bdb8e2488d
2 changed files with 5 additions and 10 deletions

View File

@ -4,18 +4,13 @@ import { VariantProps, vcn } from "../shared";
const [labelVariant, resolveLabelVariantProps] = vcn({
base: "",
variants: {
vertical: {
true: "flex flex-col gap-2 justify-center items-start",
false: "",
},
horizontal: {
true: "flex flex-row gap-2 justify-start items-center",
false: "",
direction: {
vertical: "flex flex-col gap-2 justify-center items-start",
horizontal: "flex flex-row gap-2 justify-start items-center",
},
},
defaults: {
vertical: false,
horizontal: false,
direction: "vertical",
},
});

View File

@ -16,7 +16,7 @@ export const WithInput = () => {
export const HorizontalWithInput = () => {
return (
<Label horizontal>
<Label direction="horizontal">
<p>Email</p>
<Input type="text" />
</Label>