File size: 741 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
"use client"
import { forwardRef } from "react"
import {
EMPTY_SLOT_STYLES,
type HTMLChakraProps,
type RecipeProps,
type UnstyledProp,
chakra,
useRecipe,
} from "../../styled-system"
export interface InputAddonProps
extends HTMLChakraProps<"div">,
RecipeProps<"inputAddon">,
UnstyledProp {}
export const InputAddon = forwardRef<HTMLDivElement, InputAddonProps>(
function InputAddon({ unstyled, ...props }, ref) {
const recipe = useRecipe({ key: "inputAddon", recipe: props.recipe })
const [variantProps, localProps] = recipe.splitVariantProps(props)
const styles = unstyled ? EMPTY_SLOT_STYLES : recipe(variantProps)
return <chakra.div ref={ref} {...localProps} css={[styles, props.css]} />
},
)
|