mirror of
https://github.com/supabase/supabase.git
synced 2026-05-26 05:33:47 +08:00
* chore: prep expo example. * Modify Flutter user management example to use .env and initialize supabase * chore: add .env support to swift-user-management * chore: update supabase dependency for swift-user-management example * chore: minor expo updates. * chore: update auth nextjs example. --------- Co-authored-by: dshukertjr <dshukertjr@gmail.com> Co-authored-by: Guilherme Souza <grsouza@pm.me>
25 lines
546 B
TypeScript
25 lines
546 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>
|
|
);
|
|
}
|