diff --git a/packages/react/components/Input.tsx b/packages/react/components/Input.tsx index 69a81fe..99e456e 100644 --- a/packages/react/components/Input.tsx +++ b/packages/react/components/Input.tsx @@ -1,4 +1,4 @@ -import { type VariantProps, vcn } from "@pswui-lib"; +import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib"; import React from "react"; const inputColors = { @@ -42,7 +42,8 @@ const [inputVariant, resolveInputVariantProps] = vcn({ interface InputFrameProps extends VariantProps, - React.ComponentPropsWithoutRef<"label"> { + React.ComponentPropsWithoutRef<"label">, + AsChild { children?: React.ReactNode; } @@ -50,16 +51,18 @@ const InputFrame = React.forwardRef( (props, ref) => { const [variantProps, otherPropsCompressed] = resolveInputVariantProps(props); - const { children, ...otherPropsExtracted } = otherPropsCompressed; + const { children, asChild, ...otherPropsExtracted } = otherPropsCompressed; + + const Comp = asChild ? Slot : "label"; return ( - + ); }, );