react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 508 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgSadCrying(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12 2a10 10 0 00-3.41 19.39h.06a9.81 9.81 0 006.7 0h.06A10 10 0 0012 2zm2 17.74a7.82 7.82 0 01-4 0v-3.13a3.79 3.79 0 014 0zm2-.82V11a1 1 0 000-2h-2a1 1 0 000 2v3.39a6 6 0 00-4 0V11a1 1 0 000-2H8a1 1 0 000 2v7.92a8 8 0 118 0z" fill="currentColor"/>
</Svg>);
}
export default SvgSadCrying;