UNPKG

@jinshuju/field-icons-react

Version:

First, install `@jinshuju/field-icons-react` from npm:

25 lines 1.21 kB
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: "none", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.8, d: "M20.15 12.935a6.076 6.076 0 0 0-1.258-2.215v-.091a3.373 3.373 0 0 0-.396-1.599 6.442 6.442 0 0 0-1.886-4.568A6.698 6.698 0 0 0 12 2.5a6.686 6.686 0 0 0-4.61 1.967 6.43 6.43 0 0 0-1.875 4.575 3.372 3.372 0 0 0-.395 1.587v.068a6.266 6.266 0 0 0-1.27 2.284c-.616 1.986-.488 4.258.944 4.75l.28.068c-.199.32-.304.687-.304 1.061 0 1.53 1.7 2.638 4.04 2.638a5.437 5.437 0 0 0 2.98-.788h.42c.889.542 1.921.816 2.968.788 2.329 0 4.052-1.142 4.052-2.638a1.925 1.925 0 0 0-.315-1.061c.1-.01.198-.034.291-.069 1.432-.537 1.56-2.808.943-4.795Z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconQq); module.exports = ForwardRef;