@nomercyicons/react
Version:
24 lines • 1.01 kB
JavaScript
const React = require("react");
function FancyIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "currentColor",
fillRule: "evenodd",
d: "M5.365 0h37.27A5.368 5.368 0 0148 5.371V42.63A5.368 5.368 0 0142.635 48H5.365A5.368 5.368 0 010 42.629V5.37A5.368 5.368 0 015.365 0zm26.406 30.957c.94 0 1.704-.762 1.704-1.703v-11.07c0-.037-.004-.072-.006-.107-.114-5.134-4.308-9.261-9.469-9.261s-9.355 4.127-9.47 9.26c-.001.036-.005.071-.005.107v11.071c0 .94.763 1.703 1.704 1.703h5.322v6.28a2.448 2.448 0 004.897 0v-6.28h5.323z"
}));
}
const ForwardRef = React.forwardRef(FancyIcon);
module.exports = ForwardRef;