@liner-fe/prism 1.10.27 → 1.10.29

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
@@ -755,6 +755,18 @@ var ICGraduationcap = /* @__PURE__ */ __name((props) => {
755
755
  }
756
756
  ) });
757
757
  }
758
+ if (fill) {
759
+ return /* @__PURE__ */ jsx21("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx21(
760
+ "path",
761
+ {
762
+ d: "M42.5625 22.8924L39.6588 21.1082C34.6108 23.6649 29.5838 26.1542 24.4508 28.6369C17.3923 25.4438 10.4786 22.2219 3.62891 18.7056L23.9996 8.24805L44.3704 18.7056C44.1303 18.8288 43.8904 18.9519 43.6506 19.0747L42.5625 20.8547V22.8924ZM12.9996 34.876V31.1464L22.2082 35.3052C23.6922 35.9753 25.3968 35.9535 26.8631 35.2457L34.9996 31.3177L34.9996 34.876L23.9996 40.734L12.9996 34.876Z",
763
+ fill: color,
764
+ stroke: color,
765
+ "stroke-width": "4",
766
+ "stroke-linejoin": "bevel"
767
+ }
768
+ ) });
769
+ }
758
770
  return /* @__PURE__ */ jsx21("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx21(
759
771
  "path",
760
772
  {
@@ -6134,9 +6146,25 @@ var DefaultButton = forwardRef(
6134
6146
  className: clsx2(defaultButtonVariants({ level, fill, align, size, width }), className),
6135
6147
  ref,
6136
6148
  children: /* @__PURE__ */ jsxs89("span", { className: clsx2(defaultButtonChildrenVariants({ size })), children: [
6137
- !!leftIcon && /* @__PURE__ */ jsx126(Icon, { name: leftIcon.name, size: buttonIconSizeMap[size], thick: buttonSizeIconThickMap[size] }),
6149
+ !!leftIcon && /* @__PURE__ */ jsx126(
6150
+ Icon,
6151
+ {
6152
+ name: leftIcon.name,
6153
+ size: buttonIconSizeMap[size],
6154
+ thick: buttonSizeIconThickMap[size],
6155
+ fill: leftIcon.fill
6156
+ }
6157
+ ),
6138
6158
  /* @__PURE__ */ jsx126("p", { className: style_module_default.content, children }),
6139
- !!rightIcon && /* @__PURE__ */ jsx126(Icon, { name: rightIcon.name, size: buttonIconSizeMap[size], thick: buttonSizeIconThickMap[size] })
6159
+ !!rightIcon && /* @__PURE__ */ jsx126(
6160
+ Icon,
6161
+ {
6162
+ name: rightIcon.name,
6163
+ size: buttonIconSizeMap[size],
6164
+ thick: buttonSizeIconThickMap[size],
6165
+ fill: rightIcon.fill
6166
+ }
6167
+ )
6140
6168
  ] })
6141
6169
  }
6142
6170
  );