@atxp/design-system 0.2.0 → 0.2.1

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/dist/index.cjs CHANGED
@@ -679,11 +679,11 @@ var AvatarGroup = React5.forwardRef(
679
679
  );
680
680
  AvatarGroup.displayName = "AvatarGroup";
681
681
  var AvatarGroupItem = React5.forwardRef(
682
- ({ className, src, alt, fallback, showPresence, ...props }, ref) => {
682
+ ({ className, fallbackClassName, src, alt, fallback, showPresence, ...props }, ref) => {
683
683
  return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { ref, className: "relative h-[inherit] w-[inherit]", ...props, children: [
684
684
  /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(Avatar, { className: cn("h-full w-full border border-input", className), children: [
685
685
  src && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(AvatarImage, { src, alt }),
686
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(AvatarFallback, { className: cn("font-semibold", className), children: fallback })
686
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(AvatarFallback, { className: cn("font-semibold", fallbackClassName), children: fallback })
687
687
  ] }),
688
688
  showPresence && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
689
689
  "span",