react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 444 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgPound(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M20 20H8a4.92 4.92 0 001-3v-3h6a1 1 0 000-2H9V8.89a4.89 4.89 0 019.13-2.44 1 1 0 001.37.36 1 1 0 00.37-1.36A6.9 6.9 0 007 8.89V12H4a1 1 0 000 2h3v3a3 3 0 01-3 3 1 1 0 000 2h16a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgPound;