@nomercyicons/react
Version:
24 lines • 926 B
JavaScript
import * as React from "react";
function DropboxIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 45",
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: "M24 26.033l14.236-8.86L48 25.052l-14.12 9.293L24 26.033l-9.88 8.313L0 25.054l9.764-7.88L24 26.033zM14.12 0L24 8.312l-14.236 8.86L0 9.292 14.12 0zm9.909 27.822l9.909 8.288 4.24-2.791v3.128L24.03 45l-14.15-8.553V33.32l4.241 2.791 9.909-8.288zM48 9.292L33.88 0 24 8.313l14.236 8.86L48 9.292z"
}));
}
const ForwardRef = React.forwardRef(DropboxIcon);
export default ForwardRef;