stratosphere-ui 1.0.2 → 1.0.3

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.
@@ -0,0 +1,8 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export interface AvatarProps extends HTMLAttributes<HTMLDivElement> {
3
+ isOffline?: boolean;
4
+ isOnline?: boolean;
5
+ isPlaceholder?: boolean;
6
+ shapeClassName?: string;
7
+ }
8
+ export declare const Avatar: ({ children, className, isOffline, isOnline, isPlaceholder, shapeClassName, ...props }: AvatarProps) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export type AvatarGroupProps = HTMLAttributes<HTMLDivElement>;
3
+ export declare const AvatarGroup: ({ className, ...props }: AvatarGroupProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ export * from './Avatar';
2
+ export * from './AvatarGroup';
@@ -1,5 +1,6 @@
1
1
  export * from './Alert';
2
2
  export * from './AlertMessages';
3
+ export * from './Avatar';
3
4
  export * from './Badge';
4
5
  export * from './Button';
5
6
  export * from './Card';