Files
triggerdotdev--trigger.dev/apps/webapp/app/assets/icons/ScheduleIcon.tsx
T
2026-07-13 13:32:57 +08:00

7 lines
241 B
TypeScript

import { CalendarDaysIcon } from "@heroicons/react/24/solid";
import { cn } from "~/utils/cn";
export function ScheduleIcon({ className }: { className?: string }) {
return <CalendarDaysIcon className={cn("text-sky-500", className)} />;
}