import React from 'react'; import styles from './checkmarks.module.scss'; interface CheckmarkItemProps { label: string; white?: boolean; } interface CheckmarksProps { labels: string[]; white?: boolean; } function CheckmarkItem(props: CheckmarkItemProps): JSX.Element { return (
  • {props.label}
  • ); } export default function Checkmarks(props: CheckmarksProps): JSX.Element { return ( ); }