duoyun-ui
Version:
A lightweight desktop UI component library, implemented using Gem
23 lines (22 loc) • 924 B
TypeScript
import { HTMLAttributes, RefAttributes } from 'react';
import { ForwardRefExoticComponent } from 'react';
import { DuoyunAvatarGroupElement } from '../elements/avatar';
export * from '../elements/avatar';
export type DyAvatarGroupProps = HTMLAttributes<HTMLDivElement> & RefAttributes<DuoyunAvatarGroupElement> & {
max?: DuoyunAvatarGroupElement['max'];
size?: DuoyunAvatarGroupElement['size'];
crossorigin?: DuoyunAvatarGroupElement['crossorigin'];
/**@deprecated */
data?: DuoyunAvatarGroupElement['data'];
items?: DuoyunAvatarGroupElement['items'];
};
export type DyAvatarGroupExpose = {};
declare global {
namespace JSX {
interface IntrinsicElements {
'dy-avatar-group': DyAvatarGroupProps;
}
}
}
export declare const DyAvatarGroup: ForwardRefExoticComponent<Omit<DyAvatarGroupProps, "ref"> & RefAttributes<DyAvatarGroupExpose>>;
export default DyAvatarGroup;