@sanity/icons
Version:
The Sanity icons.
26 lines (25 loc) • 615 B
JavaScript
import { forwardRef } from "react";
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
const BoltIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "bolt",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
ref,
children: /* @__PURE__ */ jsx("path", {
d: "M18 11.5L9 21L11 13.5H7L16 4L14 11.5H18Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
});
export { BoltIcon, BoltIcon as default };
//# sourceMappingURL=Bolt.js.map