@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 699 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12.005 22.003c-5.523 0-10-4.477-10-10s4.477-10 10-10 10 4.477 10 10-4.477 10-10 10m-3-9v2h-1v2h8v-2h-5v-2h3v-2h-3v-1a1.5 1.5 0 0 1 2.76-.815l1.986-.497a3.501 3.501 0 0 0-6.746 1.312v1h-1v2z"/>
</Svg>);
});
Icon.displayName = 'MoneyPoundCircleFill';
/**
* Remix Icon: Money Pound Circle Fill
* @see {@link https://remixicon.com/icon/money-pound-circle-fill Remix Icon Docs}
*/
export const MoneyPoundCircleFill = Icon;