@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 882 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function HashIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "hash",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8.33894 16.1002H5.44615L5.63077 14.9002H8.52356L9.26202 10.1002H6.36923L6.55384 8.90018H9.44663L9.89281 6H11.1069L10.6608 8.90018H15.4466L15.8928 6H17.1069L16.6608 8.90018H19.5539L19.3693 10.1002H16.4761L15.7377 14.9002H18.6308L18.4462 16.1002H15.5531L15.1069 19H13.8928L14.3389 16.1002H9.55306L9.10693 19H7.89281L8.33894 16.1002ZM10.4761 10.1002L9.73767 14.9002H14.5236L15.262 10.1002H10.4761Z",
fill: "currentColor"
})
});
}
export { HashIcon, HashIcon as default };
//# sourceMappingURL=Hash.js.map