UNPKG

@nomercyicons/react

Version:
26 lines 857 B
const React = require("react"); function LightSharpIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "none", d: "M0 0h24v24H0V0z" }), /*#__PURE__*/React.createElement("path", { d: "M13 6.06V3h-2v3.06A9.006 9.006 0 003.22 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h4.78A9.006 9.006 0 0013 6.06zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" })); } const ForwardRef = React.forwardRef(LightSharpIcon); module.exports = ForwardRef;