@sanity/icons
Version:
The Sanity icons.
42 lines (41 loc) • 951 B
JavaScript
import { forwardRef } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
const EqualIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
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,
ref,
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