mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-24 22:51:54 +02:00
23 lines
720 B
JavaScript
23 lines
720 B
JavaScript
|
const React = require("react");
|
||
|
|
||
|
function BoltIcon({
|
||
|
title,
|
||
|
titleId,
|
||
|
...props
|
||
|
}, svgRef) {
|
||
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||
|
xmlns: "http://www.w3.org/2000/svg",
|
||
|
viewBox: "0 0 20 20",
|
||
|
fill: "currentColor",
|
||
|
"aria-hidden": "true",
|
||
|
ref: svgRef,
|
||
|
"aria-labelledby": titleId
|
||
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||
|
id: titleId
|
||
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||
|
d: "M11.983 1.907a.75.75 0 00-1.292-.657l-8.5 9.5A.75.75 0 002.75 12h6.572l-1.305 6.093a.75.75 0 001.292.657l8.5-9.5A.75.75 0 0017.25 8h-6.572l1.305-6.093z"
|
||
|
}));
|
||
|
}
|
||
|
|
||
|
const ForwardRef = React.forwardRef(BoltIcon);
|
||
|
module.exports = ForwardRef;
|