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 (