react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 635 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAngry(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M10 11a1 1 0 00.89-.55 1 1 0 00-.44-1.34l-2-1a1 1 0 10-.9 1.78l2 1A.93.93 0 0010 11zm2-9a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8zm-3.64-4.67a1 1 0 00-.13 1.4 1 1 0 001.41.13 3.76 3.76 0 014.72 0 1 1 0 00.64.23 1 1 0 00.64-1.76 5.81 5.81 0 00-7.28 0zm7.19-7.22l-2 1a1 1 0 00-.44 1.34A1 1 0 0014 11a.93.93 0 00.45-.11l2-1a1 1 0 00-.9-1.78z" fill="currentColor"/>
</Svg>);
}
export default SvgAngry;