diff --git a/src/routes/dashboard/goals/goal-form/goal-icon/service.ts b/src/routes/dashboard/goals/goal-form/goal-icon/service.ts index 6046f7e5..98409fd5 100644 --- a/src/routes/dashboard/goals/goal-form/goal-icon/service.ts +++ b/src/routes/dashboard/goals/goal-form/goal-icon/service.ts @@ -42,6 +42,7 @@ import { Trophy, Utensils, } from '@steeze-ui/font-awesome'; +import { CalendarCheck } from '@steeze-ui/lucide-icons'; import { type IconSource } from '@steeze-ui/svelte-icon'; const defaultIcon: GoalIconType = { component: Fire, name: 'Fire' }; @@ -95,6 +96,7 @@ export const icons: GoalIconType[] = [ { component: Cross, name: 'Cross (Religion)' }, { component: Toolbox, name: 'Toolbox' }, { component: Bed, name: 'Bed' }, + { component: CalendarCheck, name: 'CalendarCheck' }, ]; export function getIcon(name: null | string) {