From 80c7542803bd2dc7f181af24afcf01566aff6227 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 01:39:02 +0900 Subject: [PATCH] feat(input): add asChild on InputFrame --- packages/react/components/Input.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) 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 ( - + ); }, );