@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 739 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function RetrieveIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "retrieve",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M16 14L12.5 10.5L9 14M5.5 7.5H19.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M12.5 10.5L12.5 17.5M19.5 7.5V19.5H5.5V7.5L7.5 5.5H17.5L19.5 7.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { RetrieveIcon, RetrieveIcon as default };
//# sourceMappingURL=Retrieve.js.map