import { formatInTimeZone } from 'date-fns-tz'; import { TimeFormat } from '@/localization/constants/TimeFormat'; import { Select } from '@/ui/input/components/Select'; type SettingsAccountsCalendarTimeFormatSelectProps = { value: TimeFormat; onChange: (nextValue: TimeFormat) => void; timeZone: string; }; export const SettingsAccountsCalendarTimeFormatSelect = ({ onChange, timeZone, value, }: SettingsAccountsCalendarTimeFormatSelectProps) => (