@geist-ui/react
Version:
Modern and minimalist React UI library.
12 lines (11 loc) • 446 B
TypeScript
import React from 'react';
interface Props {
count?: number;
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type AvatarGroupProps = Props & NativeAttrs;
declare const AvatarGroup: React.ForwardRefExoticComponent<Props & NativeAttrs & {
children?: React.ReactNode;
} & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>;
export default AvatarGroup;