@obolnetwork/obol-ui 1.0.95 → 1.0.97
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const AvatarFallback: import("react").ForwardRefExoticComponent<AvatarPrimitive.AvatarFallbackProps & import("react").RefAttributes<HTMLSpanElement>>;
|
|
4
|
+
export declare const AvatarComponent: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<AvatarPrimitive.AvatarProps & import("react").RefAttributes<HTMLSpanElement>>, {}, {
|
|
4
5
|
motion: "(prefers-reduced-motion)";
|
|
5
6
|
hover: "(any-hover: hover)";
|
|
6
7
|
dark: "(prefers-color-scheme: dark)";
|
|
@@ -974,4 +975,10 @@ export declare const AvatarImage: import("@stitches/react/types/styled-component
|
|
|
974
975
|
};
|
|
975
976
|
};
|
|
976
977
|
}>>;
|
|
977
|
-
|
|
978
|
+
declare type AvatarProps = {
|
|
979
|
+
src?: string;
|
|
980
|
+
size?: string;
|
|
981
|
+
isLoading?: boolean;
|
|
982
|
+
};
|
|
983
|
+
export declare const Avatar: (props: AvatarProps) => import("react/jsx-runtime").JSX.Element;
|
|
984
|
+
export {};
|