import * as React from 'react' import { TextInput, Box } from '@mantine/core' function Input({ className, type, ...props }: React.ComponentProps & { type?: string }) { return ( ) } interface InputGroupProps { children: React.ReactNode className?: string } function InputGroup({ children, className }: InputGroupProps) { return ( {children} ) } interface InputIconProps { children: React.ReactNode position: 'start' | 'end' className?: string } function InputIcon({ children, position, className }: InputIconProps) { return ( {children} ) } export { Input, InputGroup, InputIcon } export type { InputGroupProps, InputIconProps }