fix: make direction one variant
This commit is contained in:
parent
776429b6a9
commit
bdb8e2488d
@ -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,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user