import { CheckIcon } from '@/components/icons/CheckIcon' import { Show } from 'solid-js' type Props = { isChecked: boolean class?: string } export const Checkbox = (props: Props) => { return (
) }