UNPKG

@sanity/icons

Version:
31 lines (30 loc) 774 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const OverageIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "overage", 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: "M18.5 11V6.5H14", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M6.5 18.5L9 16L12 13L18.5 6.5M3 13.5H22", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { OverageIcon, OverageIcon as default }; //# sourceMappingURL=Overage.js.map