/* eslint-disable */ // @ts-nocheck import { CSSProperties } from "react"; import { useTranslation } from "react-i18next"; import { TimeSelectorControl } from "../../components/time-selector/TimeSelectorControl"; export const Time = ({ name, style, min, }: { name: string; style?: CSSProperties; min?: number; }) => { const { t } = useTranslation(); return ( ); };