UNPKG

@astraicons/react

Version:

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

22 lines 890 B
const React = require("react"); const { forwardRef } = require("react"); const FlashIcon = ({ 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: "M12 2.25c-5.385 0-9.75 4.366-9.75 9.75 0 5.386 4.365 9.75 9.75 9.75s9.75-4.364 9.75-9.75c0-5.384-4.365-9.75-9.75-9.75m.46 5.912a.75.75 0 1 0-1.315-.721l-2.232 4.065a.95.95 0 0 0 .87 1.406l3.731-.147-2.342 3.63a.75.75 0 0 0 1.26.813l2.916-4.519a.95.95 0 0 0-.835-1.464l-3.817.15z", clipRule: "evenodd" })); const ForwardRef = forwardRef(FlashIcon); module.exports = ForwardRef;