@spark-ui/icons
Version:
spark-ui icons
20 lines (19 loc) • 802 B
JavaScript
import "react";
import { jsx } from "react/jsx-runtime";
//#region src/icons/RemoveFill.tsx
var RemoveFill = ({ 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": "RemoveFill",
...title && { "data-title": title },
fill,
stroke,
...props,
dangerouslySetInnerHTML: { __html: (title === void 0 ? "" : `<title>${title}</title>`) + "<path fill-rule=\"evenodd\" d=\"m22,12c0,5.52-4.48,10-10,10S2,17.52,2,12,6.48,2,12,2s10,4.48,10,10Zm-14.17-1c-.55,0-1,.45-1,1s.45,1,1,1h8.54c.55,0,1-.45,1-1s-.45-1-1-1H7.83Z\"/>" }
});
RemoveFill.displayName = "RemoveFill";
var tags = ["RemoveFill", ""];
//#endregion
export { RemoveFill, tags };
//# sourceMappingURL=RemoveFill.mjs.map