Files
Ivan Vasilov d07e78a616 chore: Run prettier on examples folder (#43851)
This PR runs `prettier` on the `examples` folder.

Depends on https://github.com/supabase/supabase/pull/43849.
2026-03-18 10:51:10 +01:00

15 lines
504 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>
)
}