@nomercyicons/react
Version:
32 lines • 924 B
JavaScript
const React = require("react");
function DriveColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 42",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "none",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("path", {
fill: "#3777E3",
d: "M8 42l8-14h32l-8 14z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFCF63",
d: "M32 28h16L32 0H16z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#11A861",
d: "M0 28l8 14 16-28-8-14z"
})));
}
const ForwardRef = React.forwardRef(DriveColorIcon);
module.exports = ForwardRef;