@sanity/icons
Version:
The Sanity icons.
40 lines (39 loc) • 866 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function EqualIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "equal",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [
/* @__PURE__ */ jsx("path", {
d: "M7.5 4.5H3.5V20.5H7.5",
stroke: "currentColor",
strokeWidth: 1.2
}),
/* @__PURE__ */ jsx("path", {
d: "M17.5 20.5L21.5 20.5L21.5 4.5L17.5 4.5",
stroke: "currentColor",
strokeWidth: 1.2
}),
/* @__PURE__ */ jsx("path", {
d: "M9 10.5H16",
stroke: "currentColor",
strokeWidth: 1.2
}),
/* @__PURE__ */ jsx("path", {
d: "M9 14.5H16",
stroke: "currentColor",
strokeWidth: 1.2
})
]
});
}
export { EqualIcon, EqualIcon as default };
//# sourceMappingURL=Equal.js.map