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