@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 1.11 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const PrinterIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M17 17h1.5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 18.5 7h-13A2.5 2.5 0 0 0 3 9.5v5A2.5 2.5 0 0 0 5.5 17H7"
}), /*#__PURE__*/React.createElement("path", {
d: "M17 13v5.5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 7 18.5V13"
}), /*#__PURE__*/React.createElement("path", {
d: "M17 7.5v-2A2.5 2.5 0 0 0 14.5 3h-5A2.5 2.5 0 0 0 7 5.5v2",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M5.75 12.25h12.5M9.75 15.25h4.5M10.75 18.25h2.5M17.75 9.25h-.5",
opacity: 0.4
}));
const ForwardRef = forwardRef(PrinterIcon);
module.exports = ForwardRef;