import clsx from "clsx"; import * as React from "react"; import DateCard from "@/components/date-card"; import { usePoll } from "@/components/poll-context"; import ControlledScrollArea from "./controlled-scroll-area"; import { usePollContext } from "./poll-context"; import Score from "./score"; const TimeRange: React.VoidFunctionComponent<{ startTime: string; endTime: string; className?: string; }> = ({ startTime, endTime, className }) => { return (