import { Typography } from '@rmwc/typography'; import Checkmark from '@tutorbook/checkmark'; import styles from './checkmark-overlay.module.scss'; interface Props { readonly active: boolean; readonly checked?: boolean; readonly label?: string; readonly showLabel?: boolean; } export default function CheckmarkOverlay(props: Props): JSX.Element { return (