UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

11 lines (10 loc) 422 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteAvatarGroupCounterTheme { base: string; } export interface AvatarGroupCounterProps extends PropsWithChildren<ComponentProps<'a'>> { theme?: DeepPartial<FlowbiteAvatarGroupCounterTheme>; total?: number; } export declare const AvatarGroupCounter: FC<AvatarGroupCounterProps>;