diff --git a/components/BulletPoint.tsx b/components/BulletPoint.tsx new file mode 100644 index 0000000..76c9d8d --- /dev/null +++ b/components/BulletPoint.tsx @@ -0,0 +1,29 @@ +import React from 'react'; +import styles from '../styles/components/BulletPoint.module.scss'; +import { type SectionStyle, getSectionStyling, Fonts } from '../utils'; +import { type BulletPoint } from '../config'; +import Icon from './Icon'; + +interface Props { + bullet: BulletPoint; + style: SectionStyle; +} + +const Button = ({ bullet, style }: Props): JSX.Element => { + const sectionStyle = getSectionStyling(style); + return ( +
{text}
+