@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 849 B
JavaScript
import * as React from "react";
function FlashIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10m-9.54-3.838a.75.75 0 1 0-1.316-.722l-2.231 4.065a.95.95 0 0 0 .87 1.406l3.73-.146-2.341 3.63a.75.75 0 0 0 1.26.813l2.916-4.52a.95.95 0 0 0-.835-1.464l-3.817.15z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(FlashIcon);
export default ForwardRef;