react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 496 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgPoundCircle(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M16 15h-5.18a3 3 0 00.18-1v-1h2.5a1 1 0 000-2H11v-1a1.95 1.95 0 013.63-1 1 1 0 001.74-1A4 4 0 009 10v1H8a1 1 0 000 2h1v1a1 1 0 01-1 1 1 1 0 000 2h8a1 1 0 000-2zM12 1a11 11 0 1011 11A11 11 0 0012 1zm0 20a9 9 0 119-9 9 9 0 01-9 9z" fill="currentColor"/>
</Svg>);
}
export default SvgPoundCircle;