@morze/ui 0.2.5 → 0.2.6

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
@@ -910,6 +910,9 @@ function Avatar({
910
910
  }
911
911
  );
912
912
  }
913
+ function AvatarGroup({ className, ...props }) {
914
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { "data-slot": "avatar-group", role: "group", className: cn("mz-avatar-group", className), ...props });
915
+ }
913
916
  function AvatarImage({ className, ...props }) {
914
917
  return /* @__PURE__ */ jsxRuntime.jsx(
915
918
  radixUi.Avatar.Image,
@@ -3268,6 +3271,7 @@ exports.AlertDescription = AlertDescription;
3268
3271
  exports.AlertTitle = AlertTitle;
3269
3272
  exports.Avatar = Avatar;
3270
3273
  exports.AvatarFallback = AvatarFallback;
3274
+ exports.AvatarGroup = AvatarGroup;
3271
3275
  exports.AvatarImage = AvatarImage;
3272
3276
  exports.Badge = Badge;
3273
3277
  exports.Button = Button;