import React from 'react' import Colors from 'src/styles/colors' import Svg, { Path } from 'svgs' interface Props { size?: number color?: string testID?: string } const CheckCircle = ({ size = 24, color = Colors.contentPrimary, testID }: Props) => ( ) export default CheckCircle