import { ReactNode } from 'react'; import { clsx } from 'clsx/lite'; export default function Checklist({ title, icon, children, }: { title: string icon?: ReactNode children: ReactNode }) { return (