@moontra/moonui 6.13.0 → 6.14.0

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.js CHANGED
@@ -347,10 +347,11 @@ var Avatar = React12__namespace.forwardRef(({ className, size, radius, variant,
347
347
  }
348
348
  ));
349
349
  Avatar.displayName = AvatarPrimitive__namespace.Root.displayName;
350
- var AvatarImage = React12__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
350
+ var AvatarImage = React12__namespace.forwardRef(({ className, alt = "", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
351
351
  AvatarPrimitive__namespace.Image,
352
352
  {
353
353
  ref,
354
+ alt,
354
355
  className: cn("moonui-theme", "aspect-square h-full w-full", className),
355
356
  ...props
356
357
  }