@nomercyicons/react
Version:
24 lines • 1.63 kB
JavaScript
const React = require("react");
function InvisionIcon({
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: "M43.649 0H4.35A4.351 4.351 0 000 4.351V43.65A4.351 4.351 0 004.351 48H43.65A4.351 4.351 0 0048 43.649V4.35A4.351 4.351 0 0043.649 0zM16.042 15.102c1.595 0 2.932-1.25 2.932-2.89 0-1.638-1.337-2.888-2.932-2.888-1.596 0-2.932 1.25-2.932 2.888 0 1.64 1.336 2.89 2.932 2.89zm-6.08 15.473a9.932 9.932 0 00-.26 2.17c0 2.545 1.38 4.234 4.313 4.234 2.432 0 4.404-1.444 5.823-3.776l-.867 3.479h4.83l2.76-11.07c.69-2.803 2.026-4.258 4.053-4.258 1.595 0 2.587.992 2.587 2.63 0 .475-.043.992-.216 1.553l-1.423 5.088a7.648 7.648 0 00-.301 2.156c0 2.416 1.422 4.182 4.398 4.182 2.544 0 4.57-1.637 5.692-5.562l-1.897-.732c-.95 2.629-1.769 3.104-2.415 3.104-.647 0-.992-.43-.992-1.293 0-.388.086-.818.215-1.337l1.38-4.957c.345-1.164.475-2.196.475-3.145 0-3.708-2.243-5.643-4.96-5.643-2.543 0-5.13 2.294-6.424 4.71l.948-4.335h-7.373l-1.035 3.818h3.45l-2.124 8.505c-1.669 3.708-4.733 3.768-5.118 3.682-.631-.142-1.035-.382-1.035-1.203 0-.473.086-1.153.302-1.973l3.234-12.83H9.79l-1.035 3.819h3.407l-2.2 8.984z"
}));
}
const ForwardRef = React.forwardRef(InvisionIcon);
module.exports = ForwardRef;