@ucloud-fe/react-components
Version:
UCloud react components
23 lines (22 loc) • 608 B
TypeScript
import React from 'react';
export declare type Key = number | string;
export interface TagGroupProps {
/** @ignore */
children?: React.ReactNode;
/**
* 紧凑型布局
*/
compact?: boolean;
/**
* 暴露的Tag数量
*/
exposeCount?: number;
/**
* 是否自动按照宽度调整展示数量
* */
autoAdjustment?: boolean;
/** 弹出层的 popover props */
popoverProps?: any;
}
declare const _default: React.MemoExoticComponent<(props: TagGroupProps & React.HTMLAttributes<HTMLDivElement>) => JSX.Element | null>;
export default _default;