@liner-fe/prism 1.10.7 → 1.10.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.mjs CHANGED
@@ -555,6 +555,17 @@ var ICPlus = /* @__PURE__ */ __name((props) => {
555
555
  import { jsx as jsx16 } from "react/jsx-runtime";
556
556
  var ICMinus = /* @__PURE__ */ __name((props) => {
557
557
  const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
558
+ if (thick && fill) {
559
+ /* @__PURE__ */ jsx16("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx16(
560
+ "path",
561
+ {
562
+ "fill-rule": "evenodd",
563
+ "clip-rule": "evenodd",
564
+ d: "M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44ZM33 22L15 22V26L33 26V22Z",
565
+ fill: color
566
+ }
567
+ ) });
568
+ }
558
569
  if (thick) {
559
570
  return /* @__PURE__ */ jsx16("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx16("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.00065 22L40 22L40 26L8.00065 26L8.00065 22Z", fill: color }) });
560
571
  }