import { TextInput, type TextInputProps, Tooltip } from '@mantine/core'; import { Controller } from 'react-hook-form'; import type { FormerControllersProps, SpecialIDProps } from '../FormerControllers.types'; const TextInputCtrl = (props: FormerControllersProps & SpecialIDProps & TextInputProps) => { const { control, name, sid, tooltip, ...textProps } = props; return ( ( {props.children} )} /> ); }; export { TextInputCtrl }; export default TextInputCtrl;