@nomercyicons/react
Version:
24 lines • 842 B
JavaScript
import * as React from "react";
function DriveIcon({
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("path", {
fill: "currentColor",
fillRule: "evenodd",
d: "M32 28h16l-8 14H10.22l8.13-14H32zm-1.142-2l-4.633-8.106.04-.023-.497-.868L16.038 0H32l14.857 26h-16zm-14.821 2l-2.282 3.93L16 28h.037zM7.954 41.92L0 28 14.868 1.981l8.005 13.99L16 28l-2.262 3.958-5.784 9.961z"
}));
}
const ForwardRef = React.forwardRef(DriveIcon);
export default ForwardRef;