@spark-ui/icons
Version:
spark-ui icons
20 lines (19 loc) • 878 B
JavaScript
import "react";
import { jsx } from "react/jsx-runtime";
//#region src/icons/PauseFill.tsx
var PauseFill = ({ 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": "PauseFill",
...title && { "data-title": title },
fill,
stroke,
...props,
dangerouslySetInnerHTML: { __html: (title === void 0 ? "" : `<title>${title}</title>`) + "<path d=\"m12,2C6.5,2,2,6.5,2,12s4.5,10,10,10,10-4.5,10-10S17.5,2,12,2Zm2.83,13.58c0,.42-.33.75-.75.75s-.75-.33-.75-.75v-7.17c0-.42.33-.75.75-.75s.75.33.75.75v7.17Zm-4.25-7.17v7.17c0,.42-.33.75-.75.75s-.75-.33-.75-.75v-7.17c0-.42.33-.75.75-.75s.75.33.75.75Z\"/>" }
});
PauseFill.displayName = "PauseFill";
var tags = ["PauseFill", ""];
//#endregion
export { PauseFill, tags };
//# sourceMappingURL=PauseFill.mjs.map