@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 946 B
JavaScript
import * as React from "react";
function Lightning02Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M14.25 2H8.493c-.18 0-.27 0-.348.027a.5.5 0 00-.187.116c-.06.058-.1.139-.18.3l-4.2 8.4c-.192.383-.288.574-.265.73a.5.5 0 00.208.337c.129.09.343.09.772.09h6.205l-3 10L19.694 9.355c.411-.426.617-.64.629-.822a.5.5 0 00-.177-.415C20.005 8 19.71 8 19.117 8h-7.118l2.25-6z"
}));
}
const ForwardRef = React.forwardRef(Lightning02Icon);
export default ForwardRef;