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