@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 814 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="M9.335 11.502h2.17a4.5 4.5 0 0 1 4.5 4.5H9.004v1h8v-1a5.6 5.6 0 0 0-.885-3h2.886a5 5 0 0 1 4.516 2.852c-2.365 3.12-6.194 5.149-10.516 5.149-2.761 0-5.1-.59-7-1.625v-9.304a6.97 6.97 0 0 1 3.33 1.428m-4.33 7.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1zm13-14a3 3 0 1 1 0 6 3 3 0 0 1 0-6m-7-3a3 3 0 1 1 0 6 3 3 0 0 1 0-6"/>
</Svg>);
});
Icon.displayName = 'HandCoinFill';
/**
* Remix Icon: Hand Coin Fill
* @see {@link https://remixicon.com/icon/hand-coin-fill Remix Icon Docs}
*/
export const HandCoinFill = Icon;