@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.6 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Mask, Path, Rect } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 20 20" fill="none" height={size} width={size} {...otherProps}>
<Mask id="mask0_1537_20174" style={{
maskType: 'alpha',
}} maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="20">
<Rect x="0.634766" y="0.400391" width="19.2" height="19.2" fill={color}/>
</Mask>
<G mask="url(#mask0_1537_20174)">
<Path d="M10.2352 13.2008C9.79516 13.2008 9.41849 13.0441 9.10516 12.7308C8.79182 12.4174 8.63516 12.0408 8.63516 11.6008C8.63516 11.1608 8.79182 10.7841 9.10516 10.4708C9.41849 10.1574 9.79516 10.0008 10.2352 10.0008C10.6752 10.0008 11.0518 10.1574 11.3652 10.4708C11.6785 10.7841 11.8352 11.1608 11.8352 11.6008C11.8352 12.0408 11.6785 12.4174 11.3652 12.7308C11.0518 13.0441 10.6752 13.2008 10.2352 13.2008ZM6.53516 6.00078H13.9352L15.5352 2.80078H4.93516L6.53516 6.00078ZM7.35516 17.2008H13.1152C14.3152 17.2008 15.3352 16.7841 16.1752 15.9508C17.0152 15.1174 17.4352 14.0941 17.4352 12.8808C17.4352 12.3741 17.3485 11.8808 17.1752 11.4008C17.0018 10.9208 16.7552 10.4874 16.4352 10.1008L14.3552 7.60078H6.11516L4.03516 10.1008C3.71516 10.4874 3.46849 10.9208 3.29516 11.4008C3.12182 11.8808 3.03516 12.3741 3.03516 12.8808C3.03516 14.0941 3.45182 15.1174 4.28516 15.9508C5.11849 16.7841 6.14182 17.2008 7.35516 17.2008Z" fill={color}/>
</G>
</Svg>);
};
Icon.displayName = 'MoneyBag';
export const MoneyBag = memo(Icon);