@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 985 B
JavaScript
import * as React from "react";
function ExportIcon({
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: "M16.53 7.53a.75.75 0 0 0 0-1.06l-3.293-3.293a1.75 1.75 0 0 0-2.475 0L7.47 6.47a.75.75 0 1 0 1.06 1.06l2.72-2.72V10H4.76c-1.345 0-2.876.597-2.749 1.936.043.45.211.875.52 1.191l6.54 6.683c1.553 1.587 4.407 1.587 5.96 0l6.228-6.364c.42-.429.662-.941.724-1.467.164-1.37-1.466-1.979-2.846-1.979H12.75V4.81l2.72 2.72a.75.75 0 0 0 1.06 0M12.75 10h-1.5v6a.75.75 0 0 0 1.5 0z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(ExportIcon);
export default ForwardRef;