@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 749 B
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const CurrencyDollar2Fill = /* @__PURE__ */ memo(function CurrencyDollar2Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none">
<Path d="M0 0h24v24H0z"/>
<Path fill={color} d="M13.5 4a1.5 1.5 0 0 0-3 0v.5h-1a4.5 4.5 0 0 0 0 9h5a1.5 1.5 0 0 1 0 3H7a1.5 1.5 0 0 0 0 3h3.5v.5a1.5 1.5 0 0 0 3 0v-.5h1a4.5 4.5 0 1 0 0-9h-5a1.5 1.5 0 1 1 0-3H17a1.5 1.5 0 0 0 0-3h-3.5z"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Currency Dollar 2 Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { CurrencyDollar2Fill };