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({ const [labelVariant, resolveLabelVariantProps] = vcn({
base: "", base: "",
variants: { variants: {
vertical: { direction: {
true: "flex flex-col gap-2 justify-center items-start", vertical: "flex flex-col gap-2 justify-center items-start",
false: "", horizontal: "flex flex-row gap-2 justify-start items-center",
},
horizontal: {
true: "flex flex-row gap-2 justify-start items-center",
false: "",
}, },
}, },
defaults: { defaults: {
vertical: false, direction: "vertical",
horizontal: false,
}, },
}); });

View File

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