UNPKG

@jinshuju/field-icons-react

Version:

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

21 lines 1.15 kB
const React = require("react"); function FieldIconContactUs({ 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("path", { d: "M7.25 13A1.25 1.25 0 0 0 6 11.75H3.75V16A1.25 1.25 0 0 0 5 17.25h1a1.25 1.25 0 0 0 1.244-1.126L7.25 16v-3Zm1.5 3A2.75 2.75 0 0 1 6 18.75H5A2.75 2.75 0 0 1 2.25 16v-5a9.751 9.751 0 0 1 18.758-3.731A9.751 9.751 0 0 1 21.75 11v7A4.75 4.75 0 0 1 17 22.75h-5a.75.75 0 0 1 0-1.5h5a3.25 3.25 0 0 0 3.217-2.787c-.375.185-.79.287-1.217.287h-1a2.75 2.75 0 0 1-2.736-2.479L15.25 16v-3A2.75 2.75 0 0 1 18 10.25h2.215a8.248 8.248 0 0 0-16.43 0H6A2.75 2.75 0 0 1 8.75 13v3Zm8 0A1.25 1.25 0 0 0 18 17.25h1A1.25 1.25 0 0 0 20.25 16v-4.25H18A1.25 1.25 0 0 0 16.75 13v3Z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconContactUs); module.exports = ForwardRef;