@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
12 lines (11 loc) • 433 B
JavaScript
import { memo } from 'react';
import Svg, { Rect, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 20 20" width={size} height={size} {...props}>
<Rect width={20} height={20} rx={10}/>
<Path d="M6 11.267 8.311 13.4 14 7"/>
</Svg>);
});
Icon.displayName = 'CheckMark';
export const CheckMark = Icon;