@spark-ui/icons
Version:
spark-ui icons
20 lines (19 loc) • 707 B
JavaScript
import "react";
import { jsx } from "react/jsx-runtime";
//#region src/icons/Minus.tsx
var Minus = ({ title, fill = "currentColor", stroke = "none", ref, ...props } = {}) => /* @__PURE__ */ jsx("svg", {
ref,
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
"data-title": "Minus",
...title && { "data-title": title },
fill,
stroke,
...props,
dangerouslySetInnerHTML: { __html: (title === void 0 ? "" : `<title>${title}</title>`) + "<path fill-rule=\"evenodd\" d=\"m2,12c0-.62.45-1.12,1-1.12h18c.55,0,1,.5,1,1.12s-.45,1.12-1,1.12H3c-.55,0-1-.5-1-1.12Z\"/>" }
});
Minus.displayName = "Minus";
var tags = ["Minus", ""];
//#endregion
export { Minus, tags };
//# sourceMappingURL=Minus.mjs.map