@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 991 B
JavaScript
import * as React from "react";
function DownloadIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12 2.25a.75.75 0 0 1 .75.75v7h-1.5V3a.75.75 0 0 1 .75-.75M11.25 10H4.696c-1.348 0-2.873.626-2.666 1.957.07.442.255.86.559 1.17l6.52 6.683c1.549 1.587 4.394 1.587 5.943 0l6.21-6.364c.416-.428.657-.938.72-1.462C22.15 10.612 20.518 10 19.135 10H12.75v4.19l2.72-2.72a.75.75 0 1 1 1.06 1.06l-3.293 3.293a1.75 1.75 0 0 1-2.474 0L7.47 12.53a.75.75 0 1 1 1.06-1.06l2.72 2.72z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(DownloadIcon);
export default ForwardRef;