mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
11 lines (10 loc) • 398 B
TypeScript
import type { ComponentProps, PropsWithChildren } from 'react';
import React from 'react';
import type { DeepPartial } from '../../';
export interface FlowbiteAvatarGroupTheme {
base: string;
}
export interface AvatarGroupProps extends PropsWithChildren<ComponentProps<'div'>> {
theme?: DeepPartial<FlowbiteAvatarGroupTheme>;
}
export declare const AvatarGroup: React.FC<AvatarGroupProps>;