@sanity/icons
Version:
The Sanity icons.
31 lines (30 loc) • 778 B
JavaScript
import { forwardRef } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
const UploadIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "upload",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
ref,
children: [/* @__PURE__ */ jsx("path", {
d: "M12.5 6V15.5M5.5 15.5H19.5V19.5H5.5V15.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M7.5 11L12.5 6L17.5 11",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
});
export { UploadIcon, UploadIcon as default };
//# sourceMappingURL=Upload.js.map