@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 975 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Upload2Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "m15.07 8.03-2.321-2.32v3.74h-1.5V5.711l-2.32 2.32A.75.75 0 0 1 7.87 6.97l2.964-2.964a1.65 1.65 0 0 1 2.333 0L16.13 6.97a.75.75 0 1 1-1.06 1.06m-3.821 1.42H4.012c-.433 0-.995.166-1.317.688-.598.969-.666 2.469.247 3.401l5.886 6.015c1.692 1.729 4.744 1.729 6.436 0l5.606-5.729c1.01-1.032 1.163-2.521.395-3.696-.328-.5-.878-.679-1.329-.679H12.75v6.15a.75.75 0 0 1-1.5 0z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(Upload2Icon);
export default ForwardRef;