@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.43 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 StyledPrintRegular = ({
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: "M5.208 2.25h11.91l1.632 1.59V7.5H21V3.84a2.25 2.25 0 0 0-.66-1.59L18.75.66A2.248 2.248 0 0 0 17.16 0H5.209C4.008 0 3 1.007 3 2.25V7.5h2.25l-.042-5.25ZM20.625 9H3.375A3.379 3.379 0 0 0 0 12.375v5.25c0 .621.504 1.125 1.125 1.125H3.75v3.75a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5v-3.75h2.625c.621 0 1.125-.504 1.125-1.125v-5.25A3.379 3.379 0 0 0 20.625 9ZM18 21.75H6v-4.5h12v4.5Zm3.75-5.25h-1.5a1.5 1.5 0 0 0-1.5-1.5H5.25a1.5 1.5 0 0 0-1.5 1.5h-1.5v-4.125c0-.62.505-1.125 1.125-1.125h17.25c.62 0 1.125.505 1.125 1.125V16.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPrintRegular);
const PrintRegular = /*#__PURE__*/memo(ForwardRef);
export default PrintRegular;