import { formatDate } from "@/lib/utils/dates"; type SmallCalendarIconProps = { date: Date; }; export default function SmallCalendarIcon({ date }: SmallCalendarIconProps) { return (
{formatDate(date, "MMM")}
{formatDate(date, "D")}
); }