import React, { ChangeEvent, FC } from 'react'; import { Input, Label } from '~/components'; import { cn, defaultTextPropsLabel, removeFocusOutlines } from '~/utils/'; import { useLocalize } from '~/hooks'; interface InputWithLabelProps { value: string; onChange: (event: ChangeEvent) => void; label: string; id: string; } const InputWithLabel: FC = ({ value, onChange, label, id }) => { const localize = useLocalize(); return ( <> ); }; export default InputWithLabel;