react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 371 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCheck(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M18.71 7.21a1 1 0 00-1.42 0l-7.45 7.46-3.13-3.14A1 1 0 105.29 13l3.84 3.84a1 1 0 001.42 0l8.16-8.16a1 1 0 000-1.47z" fill="currentColor"/>
</Svg>);
}
export default SvgCheck;