@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 579 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function ComposeIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "compose",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M17 6L19 8M14 5.5H5.5V19.5H19.5V11M9 16L9.5 13.5L19 4L21 6L11.5 15.5L9 16Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { ComposeIcon, ComposeIcon as default };
//# sourceMappingURL=Compose.js.map