@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.89 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledReceiptRegular = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M15.3754 6.75022C15.9989 6.75022 16.5004 7.2518 16.5004 7.87526C16.5004 8.49872 15.9989 9.0003 15.3754 9.0003H8.62518C8.00173 9.0003 7.50015 8.49872 7.50015 7.87526C7.50015 7.2518 8.00173 6.75022 8.62518 6.75022H15.3754ZM15.3754 15.0005C15.9989 15.0005 16.5004 15.5021 16.5004 16.1255C16.5004 16.749 15.9989 17.2506 15.3754 17.2506H8.62518C8.00173 17.2506 7.50015 16.749 7.50015 16.1255C7.50015 15.5021 8.00173 15.0005 8.62518 15.0005H15.3754ZM7.50015 12.0004C7.50015 11.3769 8.00173 10.8754 8.62518 10.8754H15.3754C15.9989 10.8754 16.5004 11.3769 16.5004 12.0004C16.5004 12.6239 15.9989 13.1254 15.3754 13.1254H8.62518C8.00173 13.1254 7.50015 12.6239 7.50015 12.0004ZM6.75012 1.89334L8.64393 0.270853C9.06582 -0.0902842 9.68459 -0.0902842 10.1065 0.270853L12.0003 1.89334L13.8941 0.270853C14.316 -0.0902842 14.9348 -0.0902842 15.3567 0.270853L17.2505 1.89334L19.1443 0.270853C19.4771 -0.0150661 19.9459 -0.0806276 20.3443 0.102941C20.7428 0.286556 21.0006 0.685804 21.0006 1.12504V22.8758C21.0006 23.3164 20.7428 23.7148 20.3443 23.8977C19.9459 24.0805 19.4771 24.0149 19.1443 23.7289L17.2505 22.107L15.3567 23.7289C14.9348 24.0899 14.316 24.0899 13.8941 23.7289L12.0003 22.107L10.1065 23.7289C9.68459 24.0899 9.06582 24.0899 8.64393 23.7289L6.75012 22.107L4.85725 23.7289C4.52349 24.0149 4.05425 24.0805 3.65487 23.8977C3.25576 23.7148 3 23.3164 3 22.8758V1.12504C3 0.685804 3.25576 0.286509 3.65487 0.102941C4.05425 -0.0806276 4.52349 -0.0150661 4.85725 0.270853L6.75012 1.89334ZM6.01791 19.7725C6.43933 19.4116 7.06091 19.4116 7.48233 19.7725L9.37521 21.3945L11.269 19.7725C11.6909 19.4116 12.3097 19.4116 12.7316 19.7725L14.6254 21.3945L16.5192 19.7725C16.9411 19.4116 17.5599 19.4116 17.9817 19.7725L18.7505 20.4288V3.57105L17.9817 4.2292C17.5599 4.59062 16.9411 4.59062 16.5192 4.2292L14.6254 2.6068L12.7316 4.2292C12.3097 4.59062 11.6909 4.59062 11.269 4.2292L9.37521 2.6068L7.48233 4.2292C7.06091 4.59062 6.43933 4.59062 6.01791 4.2292L5.25007 3.57105V20.4288L6.01791 19.7725Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledReceiptRegular);
const ReceiptRegular = /*#__PURE__*/memo(ForwardRef);
export default ReceiptRegular;