World-clock card listing city and zone next to the local time, with an emerald Local pill on your row.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Calendar17 } from "@/components/beste/piece/calendar17";
<Calendar17
heading="Meeting in multiple zones"
rows={[
{
"city": "Istanbul",
"zone": "Europe/Istanbul",
"time": "14:00",
"offset": "GMT+3",
"isLocal": true
},
{
"city": "London",
"zone": "Europe/London",
"time": "12:00",
"offset": "GMT+1"
},
{
"city": "San Francisco",
"zone": "America/Los_Angeles",
"time": "04:00",
"offset": "GMT-7"
},
{
"city": "Tokyo",
"zone": "Asia/Tokyo",
"time": "20:00",
"offset": "GMT+9"
}
]}
/>