UNPKG

@astraicons/react

Version:

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

33 lines 1.28 kB
const React = require("react"); const { forwardRef } = require("react"); const LampIcon = ({ 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", { strokeLinecap: "round", d: "M11.951 3.841V3M17.957 5.104l-.744.744M6.744 6.209 6 5.465", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M10 21h4" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "square", d: "M9.324 17.681v-.714c0-.453-.111-.898-.324-1.297l-1.182-2.217a4.9 4.9 0 0 1-.576-2.41c0-1.85 1.079-3.531 2.76-4.302l.073-.033.013-.007a4.88 4.88 0 0 1 4.08.007l.072.033A4.73 4.73 0 0 1 17 11.043v.102c0 .397-.09.95-.184 1.334a5 5 0 0 1-.392.974l-1.182 2.217c-.213.399-.324.844-.324 1.297v.714" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M7.5 18s3.233-.026 5.496-.026S17 18 17 18" })); const ForwardRef = forwardRef(LampIcon); module.exports = ForwardRef;