@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 701 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const CashFill = /* @__PURE__ */ memo(function CashFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M3.005 4.003h18a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-18a1 1 0 0 1-1-1v-14a1 1 0 0 1 1-1M6.5 6H4v2.5A2.5 2.5 0 0 0 6.5 6m11 0A2.5 2.5 0 0 0 20 8.5V6zM4 15.5V18h2.5A2.5 2.5 0 0 0 4 15.5M17.5 18H20v-2.5a2.5 2.5 0 0 0-2.5 2.5M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8"/>
</Svg>);
});
/**
* Remix Icon: Cash Fill
* @see {@link https://remixicon.com/icon/cash-fill Remix Icon Docs}
*/
export { CashFill };