@wellness-icons/react
Version:
92 lines • 2.76 kB
JavaScript
const React = require("react");
function BusIcon({
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("path", {
d: "M0 50.033h-39.556a2.835 2.835 0 0 1-2.834-2.835V2.835A2.834 2.834 0 0 1-39.556 0H0a2.835 2.835 0 0 1 2.835 2.835v44.363A2.836 2.836 0 0 1 0 50.033",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "2.92px"
},
transform: "translate(18.776 2.254)scale(.34263)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0-6.851v2.332A4.53 4.53 0 0 1-4.535 0H-5.78a4.526 4.526 0 0 1-4.52-4.519v-2.332",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "2.92px"
},
transform: "translate(8.728 21.746)scale(.34263)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0-6.851v2.332A4.53 4.53 0 0 1-4.535 0H-5.78a4.526 4.526 0 0 1-4.52-4.519v-2.332",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "2.92px"
},
transform: "translate(18.8 21.746)scale(.34263)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 9.995v-7.16A2.835 2.835 0 0 1 2.835 0h52.703a2.834 2.834 0 0 1 2.834 2.835v7.16",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "2.92px"
},
transform: "translate(2 4.503)scale(.34263)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h45.225",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "2.92px"
},
transform: "translate(4.253 12.345)scale(.34263)"
}), /*#__PURE__*/React.createElement("circle", {
cx: -3.726,
r: 3.726,
style: {
fill: "none",
stroke: "#000",
strokeWidth: "2.92px"
},
transform: "matrix(0 -.34263 -.34263 0 7.875 14.655)"
}), /*#__PURE__*/React.createElement("circle", {
cx: -3.726,
r: 3.726,
style: {
fill: "none",
stroke: "#000",
strokeWidth: "2.92px"
},
transform: "matrix(0 -.34263 -.34263 0 16.125 14.655)"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(BusIcon);
module.exports = ForwardRef;