diff --git a/src/components/Checklist.tsx b/src/components/Checklist.tsx index 811e9b46..cb80dded 100644 --- a/src/components/Checklist.tsx +++ b/src/components/Checklist.tsx @@ -4,10 +4,12 @@ import { clsx } from 'clsx/lite'; export default function Checklist({ title, icon, + optional, children, }: { title: string icon?: ReactNode + optional?: boolean children: ReactNode }) { return ( @@ -15,11 +17,13 @@ export default function Checklist({