@scaleflex/icons
Version:
SVG icons as React components
39 lines • 2.76 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var PlateNumber = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "PlateNumber",
ref: ref,
width: size,
height: size,
viewBox: "0 0 45 44",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M11.3105 24.7339V25.9995H5.50977V24.9778L9.15787 20.1328H5.58887V18.8672H11.1655V19.856L7.49138 24.7339H11.3105Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M14.4707 18.8672L15.8286 21.2336L17.2128 18.8672H18.9597L16.7976 22.3674L19.0454 25.9995H17.2985L15.8483 23.5342L14.3981 25.9995H12.6447L14.8859 22.3674L12.7304 18.8672H14.4707Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M26.3391 24.74L27.9587 22.6663L25.5823 21.9851L26.0137 20.6909L28.3599 21.6143L28.2312 18.9805H29.6238L29.4875 21.6597L31.7959 20.7515L32.2122 22.0608L29.7979 22.7495L31.3796 24.7778L30.252 25.5801L28.8518 23.3701L27.4668 25.512L26.3391 24.74Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M34.077 24.74L35.6966 22.6663L33.3202 21.9851L33.7516 20.6909L36.0978 21.6143L35.9691 18.9805H37.3617L37.2254 21.6597L39.5338 20.7515L39.9501 22.0608L37.5357 22.7495L39.1175 24.7778L37.9898 25.5801L36.5897 23.3701L35.2047 25.512L34.077 24.74Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M22.475 4C23.0273 4 23.475 4.50368 23.475 5.125V9H41.375C42.4796 9 43.375 9.89543 43.375 11V33C43.375 34.1046 42.4796 35 41.375 35H23.475V38.875C23.475 39.4963 23.0273 40 22.475 40H22.275C21.7227 40 21.275 39.4963 21.275 38.875V35H3.375C2.27043 35 1.375 34.1046 1.375 33V11C1.375 9.89543 2.27043 9 3.375 9H21.275V5.125C21.275 4.50368 21.7227 4 22.275 4H22.475ZM2.975 16.1V27.9H21.275V16.1H2.975ZM21.275 14.5H2.975V11C2.975 10.7791 3.15409 10.6 3.375 10.6H21.275V14.5ZM23.475 16.1V27.9H41.775V16.1H23.475ZM41.775 14.5H23.475V10.6H41.375C41.5959 10.6 41.775 10.7791 41.775 11V14.5ZM41.775 29.5H23.475V33.4H41.375C41.5959 33.4 41.775 33.2209 41.775 33V29.5ZM21.275 29.5H2.975V33C2.975 33.2209 3.15409 33.4 3.375 33.4H21.275V29.5Z",
fill: color
}));
});
export default PlateNumber;