@datalayer/core
Version:
**Datalayer Core**
20 lines (19 loc) • 534 B
TypeScript
type VariantType = "marble" | "beam" | "pixel" | "sunset" | "ring" | "bauhaus" | undefined;
type IBoringAvatarProps = {
displayName: string;
variant: VariantType;
size: number;
square: boolean;
style: object;
};
export declare const BoringAvatar: {
(props: IBoringAvatarProps): import("react/jsx-runtime").JSX.Element;
defaultProps: {
displayName: string;
variant: VariantType;
size: number;
square: boolean;
style: undefined;
};
};
export default BoringAvatar;