@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
28 lines • 2.45 kB
JavaScript
const React = require("react");
function FieldIconQq({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
d: "M20.09 12.935a6.087 6.087 0 0 0-1.249-2.215v-.091a3.389 3.389 0 0 0-.393-1.599 6.463 6.463 0 0 0-1.873-4.568 6.633 6.633 0 0 0-4.58-1.962 6.622 6.622 0 0 0-4.58 1.967 6.452 6.452 0 0 0-1.863 4.575 3.39 3.39 0 0 0-.393 1.587v.068a6.278 6.278 0 0 0-1.26 2.284c-.614 1.986-.486 4.258.936 4.75l.278.068c-.197.32-.3.687-.3 1.061 0 1.53 1.688 2.638 4.012 2.638a5.373 5.373 0 0 0 2.961-.788h.417c.883.542 1.909.816 2.949.788 2.313 0 4.025-1.142 4.025-2.638a1.935 1.935 0 0 0-.312-1.061c.099-.01.196-.034.289-.069 1.422-.536 1.55-2.808.937-4.795Zm-1.757 2.957a.762.762 0 0 0-.694-.285.772.772 0 0 0-.625.422 7.73 7.73 0 0 1-.532.822.807.807 0 0 0-.139.685.796.796 0 0 0 .463.537c.474.205.775.49.775.742 0 .49-1.041 1.039-2.429 1.039a3.502 3.502 0 0 1-2.174-.617.817.817 0 0 0-.579-.194 4.684 4.684 0 0 1-.798 0 .796.796 0 0 0-.59.194 3.502 3.502 0 0 1-2.186.617c-1.387 0-2.417-.548-2.417-1.04 0-.25.3-.536.787-.741a.831.831 0 0 0 .451-.544.812.812 0 0 0-.139-.69 5.508 5.508 0 0 1-.52-.821.837.837 0 0 0-.625-.423.866.866 0 0 0-.706.286c-.083.11-.18.21-.289.296a3.7 3.7 0 0 1 0-2.774 4.671 4.671 0 0 1 1.157-1.86.786.786 0 0 0 .243-.709 1.512 1.512 0 0 1 0-.228c.01-.322.101-.636.266-.913a.926.926 0 0 0 .115-.548 4.853 4.853 0 0 1 .326-1.892A4.901 4.901 0 0 1 8.51 5.629c.45-.47.99-.846 1.588-1.108a5.027 5.027 0 0 1 1.896-.423 5.05 5.05 0 0 1 1.905.429c.6.265 1.141.644 1.593 1.116a4.922 4.922 0 0 1 1.037 1.634c.233.607.343 1.253.323 1.902a.735.735 0 0 0 .116.468c.181.297.28.635.289.982.006.08.006.16 0 .24a.824.824 0 0 0 .208.685c.53.515.928 1.15 1.157 1.85a3.88 3.88 0 0 1 .08 2.762.924.924 0 0 1-.37-.274Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconQq);
module.exports = ForwardRef;