feat: add full style in input

This commit is contained in:
p-sw 2024-05-28 21:16:26 +09:00
parent 86e77f6672
commit d0fca46918

View File

@ -29,9 +29,14 @@ const [inputVariant, resolveInputVariantProps] = vcn({
true: "bg-transparent border-none p-0 ring-0 hover:bg-transparent invalid:hover:bg-transparent invalid:focus-within:bg-transparent invalid:focus-within:ring-0",
false: "",
},
full: {
true: "w-full",
false: "w-fit",
},
},
defaults: {
unstyled: false,
full: false,
},
});