@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 847 B
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",
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: "M9.623 3.852a.95.95 0 0 1 .84-.508h4.334c.759 0 1.21.848.786 1.477l-2.29 3.4 3.743-.255a.948.948 0 0 1 .822 1.515L9.756 20.277a.95.95 0 0 1-.758.38h-.043a.948.948 0 0 1-.913-1.201L10 12.363l-3.257-.067a.948.948 0 0 1-.82-1.388z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(LightningIcon);
module.exports = ForwardRef;