import * as React from 'react'; import styled from 'styled-components'; export const CheckedUl = styled.ul` list-style-type: none; `; const Li = styled.li` padding: 0.8rem 0 0.8rem 1.5rem; position: relative; line-height: 1.4rem; #checkmark-icon { position: absolute; top: 1rem; left: 0; } @media (max-width: 768px) { font-size: 15px; } `; const Checkmark = () => ( ); interface CheckedLiProps { children: string; } export const CheckedLi = (props: CheckedLiProps) => (
  • {props.children}
  • );