react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 449 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgDollarSign(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M14 11h-4a2 2 0 010-4h5a1 1 0 011 1 1 1 0 002 0 3 3 0 00-3-3h-2V3a1 1 0 00-2 0v2h-1a4 4 0 000 8h4a2 2 0 010 4H9a1 1 0 01-1-1 1 1 0 00-2 0 3 3 0 003 3h2v2a1 1 0 002 0v-2h1a4 4 0 000-8z" fill="currentColor"/>
</Svg>);
}
export default SvgDollarSign;