UNPKG

@astraicons/react

Version:

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

24 lines 2.38 kB
const React = require("react"); const { forwardRef } = require("react"); const FactoryIcon = ({ 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: "M17.95 6.037c.918 0 1.662.745 1.662 1.663v4.28l1.679 1.421c.266.225.42.556.42.905v5.723q-.001.145-.036.282a.712.712 0 0 1-.175 1.402h-19a.712.712 0 0 1-.21-1.392V9.653c0-.993 1.149-1.545 1.924-.924l.073.058V7.95c0-.918.745-1.663 1.663-1.663h.1c.918 0 1.663.745 1.663 1.663v2.8a1.16 1.16 0 0 0 .728-1.084c0-.962 1.076-1.505 1.846-.979V7.7a1.664 1.664 0 0 1 3.325 0v3.386a.905.905 0 0 0 .854-.905c0-.954 1.056-1.494 1.821-.998V7.7c0-.918.745-1.663 1.663-1.663m-3.1 9.5c-.76 0-1.662.52-1.662 1.473v3.04c0 .083.017.163.043.237h1.338a.7.7 0 0 0 .044-.237v-3.012l.011-.009a.37.37 0 0 1 .227-.066h1.899a.37.37 0 0 1 .227.066l.011.01v3.01a.7.7 0 0 0 .043.238h1.338a.7.7 0 0 0 .044-.237v-3.04c0-.954-.901-1.473-1.663-1.473zm-8.85.75a.713.713 0 0 0-.713.713v1a.713.713 0 0 0 1.426 0v-1A.713.713 0 0 0 6 16.287m3 0a.713.713 0 0 0-.713.713v1a.713.713 0 0 0 1.426 0v-1A.713.713 0 0 0 9 16.287m8.95-8.824a.237.237 0 0 0-.237.237v2.674l.474.401V7.7a.237.237 0 0 0-.237-.237m-12 .25a.237.237 0 0 0-.237.237V9.93l.574.459V7.95a.237.237 0 0 0-.237-.237zm6-.25a.237.237 0 0 0-.237.237v2.143l.475.387V7.7a.237.237 0 0 0-.238-.237", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { d: "M7.9 2.237c.394 0 .712.32.712.713 0 .918-.744 1.662-1.662 1.662a.24.24 0 0 0-.232.19l-.02.192a.713.713 0 0 1-1.41-.143c0-.919.744-1.663 1.662-1.663.115 0 .21-.082.233-.19l.02-.191a.71.71 0 0 1 .697-.57M13.9 2.237c.394 0 .712.32.712.713 0 .918-.744 1.662-1.662 1.662a.24.24 0 0 0-.232.19l-.02.192a.713.713 0 0 1-1.41-.143c0-.919.744-1.663 1.662-1.663.115 0 .21-.082.233-.19l.02-.191a.71.71 0 0 1 .697-.57M19.9 2.237c.394 0 .712.32.712.713 0 .918-.744 1.662-1.662 1.662a.24.24 0 0 0-.232.19l-.02.192a.713.713 0 0 1-1.41-.143c0-.919.744-1.663 1.662-1.663.115 0 .21-.082.233-.19l.02-.191a.71.71 0 0 1 .697-.57" })); const ForwardRef = forwardRef(FactoryIcon); module.exports = ForwardRef;