@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 801 B
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const CurrencyDollarFill = /* @__PURE__ */ memo(function CurrencyDollarFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M0 0h24v24H0z"/>
<Path fill={color} d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12m11-5a1 1 0 1 0-2 0v1h-1a2.5 2.5 0 0 0 0 5h4a.5.5 0 0 1 0 1H9a1 1 0 1 0 0 2h2v1a1 1 0 1 0 2 0v-1h1a2.5 2.5 0 0 0 0-5h-4a.5.5 0 0 1 0-1h5a1 1 0 1 0 0-2h-2z"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Currency Dollar Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { CurrencyDollarFill };