import * as React from 'react' import CheckIcon from '../icons/check' export const Checkbox: React.FC<{ isChecked: boolean blockId: string | undefined }> = ({ isChecked }) => { let content = null if (isChecked) { content = (