@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 579 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z"/>
</Svg>);
};
Icon.displayName = 'CheckLine';
/**
* Remix Icon: Check Line
* @see {@link https://remixicon.com/icon/check-line Remix Icon Docs}
*/
export const CheckLine = memo(Icon);