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