react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 475 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgDollarAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M14 11h-1V7h2a1 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 8h1v4H9a1 1 0 01-1-1 1 1 0 00-2 0 3 3 0 003 3h2v2a1 1 0 002 0v-2h1a4 4 0 000-8zm-3 0h-1a2 2 0 010-4h1zm3 6h-1v-4h1a2 2 0 010 4z" fill="currentColor"/>
</Svg>);
}
export default SvgDollarAlt;