UNPKG

funuicss

Version:

React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b

10 lines (9 loc) 285 B
import React from 'react'; interface AvatarGroupProps { avatars: React.ReactElement[]; size?: number; overlap?: number; maxVisible?: number; } export default function CircleGroup({ avatars, size, overlap, maxVisible, }: AvatarGroupProps): React.JSX.Element; export {};