@nature-ui/avatar
Version:
A base React component for icons
15 lines (12 loc) • 560 B
TypeScript
import * as _nature_ui_system_dist_system_types from '@nature-ui/system/dist/system.types';
import { PropsOf, nature } from '@nature-ui/system';
import React from 'react';
interface AvatarGroupOptions {
children: React.ReactNode;
max?: number;
spacing?: string | number;
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
}
type AvatarGroupProps = AvatarGroupOptions & PropsOf<typeof nature.div>;
declare const AvatarGroup: _nature_ui_system_dist_system_types.ComponentWithAs<"div", AvatarGroupProps>;
export { AvatarGroup, AvatarGroupProps };