import { CalendarDays, CalendarX } from "lucide-react" import { ScheduleList } from "@/shared/components/schedule/schedule-list" import { Card, CardContent, CardHeader, CardTitle } from "@/shared/components/ui/card" import { EmptyState } from "@/shared/components/ui/empty-state" import type { ChildScheduleItem } from "@/modules/parent/types" export function ChildScheduleCard({ items, childName, }: { items: ChildScheduleItem[] childName: string }) { const hasSchedule = items.length > 0 return ( {childName}'s Today Schedule {!hasSchedule ? ( ) : ( )} ) }