@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.17 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const LightningIcon = ({
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: "M16.618 9.515 9.583 18.89a.276.276 0 0 1-.487-.24l1.804-6.53a.292.292 0 0 0-.275-.37l-3.154-.064a.292.292 0 0 1-.252-.427l3.2-6.103A.29.29 0 0 1 10.675 5h3.702c.233 0 .372.26.242.455L12.333 8.85c-.136.2.02.47.261.454l3.77-.256a.292.292 0 0 1 .254.466Z",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9.5 19h-.117a.292.292 0 0 1-.281-.37l1.798-6.51a.292.292 0 0 0-.275-.37l-3.154-.064a.292.292 0 0 1-.252-.427l3.2-6.103A.29.29 0 0 1 10.675 5h3.702c.233 0 .372.26.242.455L12 9.345"
}));
const ForwardRef = forwardRef(LightningIcon);
module.exports = ForwardRef;