flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 338 B
TypeScript
import type { ComponentProps } 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>;