@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 797 B
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_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>);
});
Icon.displayName = 'CurrencyDollarFill';
/**
* MingCute Icon: Currency Dollar Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const CurrencyDollarFill = Icon;