import { cn } from '../../lib/utils'; import type { ComponentProps, HTMLAttributes } from 'react'; import { forwardRef } from 'react'; export type InputGroupProps = HTMLAttributes; export const InputGroup = forwardRef( ({ className, ...props }, ref) => (
), ); InputGroup.displayName = 'InputGroup'; export type InputGroupTextareaProps = ComponentProps<'textarea'>; export const InputGroupTextarea = forwardRef( ({ className, ...props }, ref) => (