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