@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 698 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function PublishIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "publish",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M4.99997 5.50006H20M12.5 9.00005V20",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M7.5 14L12.5 9.00006L17.5 14",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { PublishIcon, PublishIcon as default };
//# sourceMappingURL=Publish.js.map