@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 604 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function PackageIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "package",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M12.5 13V22M12.5 13L4.5 8M12.5 13L20.5 8M8.5 5.5L16.5 10.5M4.5 8L12.5 3L20.5 8V17L12.5 22L4.5 17V8Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { PackageIcon, PackageIcon as default };
//# sourceMappingURL=Package.js.map