paper-ai-release-24-07-21/components/Step.tsx
Liuweiqing 9429952505 init
2024-01-18 15:46:18 +08:00

25 lines
543 B
TypeScript

export default function Step({
title,
children,
}: {
title: string
children: React.ReactNode
}) {
return (
<li className="mx-4">
<input type="checkbox" id={title} className={`mr-2 peer`} />
<label
htmlFor={title}
className={`text-lg text-foreground/90 peer-checked:line-through font-semibold hover:cursor-pointer`}
>
{title}
</label>
<div
className={`mx-6 text-foreground/80 text-sm peer-checked:line-through`}
>
{children}
</div>
</li>
)
}