UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

28 lines 1.43 kB
import * as React from "react"; import { forwardRef } from "react"; const PrinterIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M16.25 17h-8.5v-4h8.5zM9 15.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { d: "M10.75 17.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M6.25 7H5.5A2.5 2.5 0 0 0 3 9.5v5A2.5 2.5 0 0 0 5.5 17h.75v1.5a3.25 3.25 0 0 0 3.25 3.25h5a3.25 3.25 0 0 0 3.25-3.25V17h.75a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 18.5 7h-.75V5.5a3.25 3.25 0 0 0-3.25-3.25h-5A3.25 3.25 0 0 0 6.25 5.5zm1.5 0h8.5V5.5a1.75 1.75 0 0 0-1.75-1.75h-5A1.75 1.75 0 0 0 7.75 5.5zm8.5 10h1.5v-4h.5a.75.75 0 0 0 0-1.5H5.75a.75.75 0 0 0 0 1.5h.5v4h1.5v1.5c0 .966.784 1.75 1.75 1.75h5a1.75 1.75 0 0 0 1.75-1.75zm.25-7.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75", clipRule: "evenodd" })); const ForwardRef = forwardRef(PrinterIcon); export default ForwardRef;