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"> <
10 lines (9 loc) • 449 B
JavaScript
import { jsxs as _jsxs } from "react/jsx-runtime";
import classNames from 'classnames';
import { useTheme } from '../Flowbite';
const AvatarGroupCounter = ({ total, href, className }) => {
const theme = useTheme().theme.avatarGroupCounter;
return (_jsxs("a", { className: classNames(theme.base, className), href: href, children: ["+", total] }));
};
AvatarGroupCounter.displayName = 'Avatar.GroupCounter';
export default AvatarGroupCounter;