diff --git a/packages/react/components/Input.tsx b/packages/react/components/Input.tsx index c1785eb..4a45aa6 100644 --- a/packages/react/components/Input.tsx +++ b/packages/react/components/Input.tsx @@ -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, }, });