@wellness-icons/react
Version:
85 lines • 2.47 kB
JavaScript
import * as React from "react";
function CarIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
xmlSpace: "preserve",
style: {
fillRule: "evenodd",
clipRule: "evenodd",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10
},
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("ellipse", {
cx: -6.993,
rx: 6.993,
ry: 6.994,
style: {
fill: "none",
stroke: "#000",
strokeWidth: "3.48px"
},
transform: "matrix(0 -.28735 -.28735 0 6.307 13.425)"
}), /*#__PURE__*/React.createElement("ellipse", {
cx: -6.993,
rx: 6.993,
ry: 6.994,
style: {
fill: "none",
stroke: "#000",
strokeWidth: "3.48px"
},
transform: "matrix(0 -.28735 -.28735 0 17.31 13.425)"
}), /*#__PURE__*/React.createElement("path", {
d: "m0 32.05-4.38.01c-2.16 0-3.85-1.84-3.67-3.99.449-5.4 2.56-15.02 11.46-21.27 9.71-6.81 21.72-5.53 29.779-1.05 5.771 3.2 9.031 7.78 10.591 10.37.829-.05 10.079-.41 15.329 6.72a15.7 15.7 0 0 1 2.25 4.41c.771 2.34-1.059 4.73-3.519 4.73l-5.7.01",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.48px"
},
transform: "matrix(.28735 0 0 .28735 4.317 5.97)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-24.44-.015H0",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.48px"
},
transform: "matrix(-.28735 .00035 .00035 .28735 8.297 15.18)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-7.014-7.014H7.014",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.48px"
},
transform: "matrix(0 .28735 .28735 0 11.95 8.586)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-48.271 0H0",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.48px"
},
transform: "matrix(-.28735 0 0 .28735 3.027 10.601)"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(CarIcon);
export default ForwardRef;