UNPKG

@astraicons/react

Version:

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

20 lines 1.37 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", 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", { d: "M14.077 20.254a.75.75 0 0 1 0 1.492L14 21.75h-4a.75.75 0 0 1 0-1.5h4zM12.42 5.515c.6.032 1.196.16 1.764.384l.283.12v.001l.011.006h.001l.073.032a5.48 5.48 0 0 1 3.198 4.985v.102c0 .479-.104 1.096-.206 1.512l-.003.013-.004.011c-.11.388-.26.766-.451 1.124l-1.183 2.217a2 2 0 0 0-.235.945v.257h1.082a.75.75 0 0 1 0 1.5h-3.754a658 658 0 0 0-4.95.022l-.397.003h-.143a.75.75 0 0 1-.012-1.5h.144l.397-.003.54-.004v-.275c-.001-.33-.081-.654-.236-.945l-1.183-2.217a5.66 5.66 0 0 1-.664-2.66v-.102A5.49 5.49 0 0 1 9.69 6.058l.073-.033.011-.005h.001a5.6 5.6 0 0 1 2.346-.512zM5.47 4.934a.75.75 0 0 1 1.06 0l.744.744a.75.75 0 0 1-1.06 1.061l-.744-.744a.75.75 0 0 1 0-1.06M17.427 4.574a.75.75 0 0 1 1.06 1.06l-.744.744a.75.75 0 1 1-1.06-1.06zM11.951 2.25a.75.75 0 0 1 .75.75v.842a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75" })); const ForwardRef = forwardRef(LampIcon); module.exports = ForwardRef;