import * as React from 'react'; import { cn } from '#utils'; import { Input } from '../Input/Input.tsx'; const InputGroupInput = ({ className, ...props }: React.ComponentProps<'input'>) => { return ( ); }; export { InputGroupInput };