import { cn } from "~/utils/cn"; export function CheckboxIndicator({ checked }: { checked: boolean }) { return (
{checked && ( )}
); }