@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
28 lines • 2.27 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: "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: "M15.717 3.25c1.646 0 3.259 1.258 3.69 2.845l.043.177.884 4.36c1.028.459 1.752 1.407 1.907 2.49l.022.204.213 2.844c.094 1.257-.615 2.407-1.697 2.803a2.36 2.36 0 0 1-4.439.384l-.037-.094H7.7l-.037.093a2.342 2.342 0 0 1-1.804 1.369l-.172.019-.176.006c-1.084 0-2.02-.736-2.225-1.706a2.85 2.85 0 0 1-1.767-2.686l.009-.188.213-2.844c.082-1.101.755-2.09 1.7-2.545l.169-.075.944-4.434c.342-1.61 1.908-2.925 3.55-3.017l.182-.005h7.43Zm0 1.477h-7.43c-.972 0-1.97.768-2.25 1.704l-.038.149-.968 4.55-.012.148a.74.74 0 0 1-.523.62c-.655.195-1.158.76-1.265 1.4l-.017.14-.213 2.843c-.053.706.381 1.306 1.058 1.463.286.067.501.294.557.576l.013.107a.886.886 0 0 0 .883.846c.425 0 .779-.297.863-.707l.016-.105a.738.738 0 0 1 .632-.666l.103-.007h9.752c.349 0 .644.241.72.571l.016.102a.881.881 0 0 0 1.75.074l.012-.108a.74.74 0 0 1 .466-.65l.104-.033a1.355 1.355 0 0 0 1.062-1.323l-.004-.14-.213-2.844c-.053-.695-.58-1.33-1.282-1.539a.74.74 0 0 1-.523-.621l-.013-.154-.967-4.543c-.213-1.002-1.265-1.853-2.289-1.853Zm-9.367 8.67a1.538 1.538 0 1 1 0 3.074 1.538 1.538 0 0 1 0-3.075Zm11.304 0a1.538 1.538 0 1 1 0 3.074 1.538 1.538 0 0 1 0-3.075Zm-1.978-7.358c.546 0 1.074.413 1.227.933l.805 3.5.011.13a.8.8 0 0 1-.187.553.79.79 0 0 1-.531.27l-.111.005H7.115a.824.824 0 0 1-.649-.282.79.79 0 0 1-.181-.545l.011-.127.01-.053.768-3.333c.098-.538.597-.987 1.139-1.045l.116-.006h7.347Zm-.162 1.476H8.489l-.56 2.438h8.145l-.56-2.438Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPlateNumber);
module.exports = ForwardRef;