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"> <
11 lines (10 loc) • 380 B
TypeScript
import type { ComponentProps, PropsWithChildren } from 'react';
import React from 'react';
export interface FlowbiteAvatarGroupCounterTheme {
base: string;
}
export interface AvatarGroupdCounterProps extends PropsWithChildren<ComponentProps<'a'>> {
total?: number;
}
declare const AvatarGroupCounter: React.FC<AvatarGroupdCounterProps>;
export default AvatarGroupCounter;