UNPKG

@astraicons/react

Version:

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

23 lines 919 B
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: "M17.332 9.087 9.23 19.883a.3.3 0 0 1-.233.117h-.043a.292.292 0 0 1-.281-.37l2.084-7.544a.292.292 0 0 0-.275-.37l-3.726-.076a.292.292 0 0 1-.252-.427l3.7-7.057A.29.29 0 0 1 10.461 4h4.333c.234 0 .373.26.242.455L12.332 8.47c-.135.202.02.47.262.454l4.485-.304a.292.292 0 0 1 .253.466Z" })); const ForwardRef = forwardRef(LightningIcon); module.exports = ForwardRef;