@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
37 lines • 1.3 kB
JavaScript
const React = require("react");
function FieldIconPlateNumber({
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 10 1.664 2.496a2 2 0 0 1 .336 1.11V19a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-2H5v2a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-5.394a2 2 0 0 1 .336-1.11L4 10m16 0-1.987-4.77A2 2 0 0 0 16.167 4H7.833a2 2 0 0 0-1.846 1.23L4 10m16 0-2 .5H6L4 10m16 0 2-1.5M4 10 2 8.5"
}), /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2.5,
d: "M18 14v.01"
}), /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2.5,
d: "M6 14v.01"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPlateNumber);
module.exports = ForwardRef;