hoda-react
Version:
<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <
9 lines (8 loc) • 311 B
TypeScript
import type { ComponentProps, PropsWithChildren } from 'react';
import React from 'react';
export interface FlowbiteAvatarGroupTheme {
base: string;
}
export type AvatarGroupProps = PropsWithChildren<ComponentProps<'div'>>;
declare const AvatarGroup: React.FC<AvatarGroupProps>;
export default AvatarGroup;