react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 434 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgSigma(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M16 16h-5.59l3.3-3.29a1 1 0 000-1.42L10.41 8H16a1 1 0 000-2H8a1 1 0 00-.92.62 1 1 0 00.21 1.09l4.3 4.29-4.3 4.29a1 1 0 00-.21 1.09A1 1 0 008 18h8a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgSigma;