import * as React from 'react' import colors from 'src/styles/colors' import Svg, { Path } from 'svgs' interface Props { height?: number width?: number color?: string stroke?: boolean testID?: string } export default class Checkmark extends React.PureComponent { static defaultProps = { height: 32, width: 32, color: colors.accent, stroke: false, testID: undefined, } render() { return ( ) } }