@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
30 lines • 1.24 kB
JavaScript
const React = require("react");
function FieldIconCompany({
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", {
fillRule: "evenodd",
d: "M5 21.573h14a2 2 0 0 0 2-2v-6.73a2 2 0 0 0-1.148-1.81L14 8.279V4.43a2 2 0 0 0-2.684-1.88l-7 2.545A2 2 0 0 0 3 6.974v12.6a2 2 0 0 0 2 2ZM11.83 3.96l-7 2.545a.5.5 0 0 0-.33.47v12.6a.5.5 0 0 0 .5.5h2.75v-4.5a.75.75 0 0 1 1.5 0v4.5h3.25V4.428a.5.5 0 0 0-.67-.47ZM14 20.073V9.937l5.213 2.453a.5.5 0 0 1 .287.452v6.731a.5.5 0 0 1-.5.5h-5Z",
clipRule: "evenodd"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconCompany);
module.exports = ForwardRef;