import dayjs from "@calcom/dayjs"; export const VeritcalLines = ({ days }: { days: dayjs.Dayjs[] }) => { return (
{days.map((_, i) => (
))}
); };