import { env } from "../../lib/env"; import { format, formatISO } from "date-fns"; import { enUS } from "date-fns/locale"; import { tz } from "@date-fns/tz"; import { utc } from "@date-fns/utc"; import type { ComponentPropsWithoutRef } from "react"; export type TimeProps = ComponentPropsWithoutRef<"time"> & { date: string; format?: string; }; const Time = ({ date, format: formatStr = "PPpp", ...rest }: TimeProps) => { return ( ); }; export default Time;