import React from 'react'; import Style from '../../styles'; type Props = { fill?: string } export default function CheckIcon({ fill = Style.color2.positive, }: Props) { return ( ); }