@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 555 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ReceiptFill = /* @__PURE__ */ memo(function ReceiptFill(_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 4 6 2 3 4v15a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2H7v2a1 1 0 1 1-2 0v-4h16V4l-3-2-3 2-3-2z"/>
</Svg>);
});
/**
* Remix Icon: Receipt Fill
* @see {@link https://remixicon.com/icon/receipt-fill Remix Icon Docs}
*/
export { ReceiptFill };