You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
679 B
20 lines
679 B
import * as React from 'react';
|
|
import type { ComponentType } from './Overflow';
|
|
export interface ItemProps<ItemType> extends React.HTMLAttributes<any> {
|
|
prefixCls: string;
|
|
item?: ItemType;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
renderItem?: (item: ItemType) => React.ReactNode;
|
|
responsive?: boolean;
|
|
itemKey?: React.Key;
|
|
registerSize: (key: React.Key, width: number | null) => void;
|
|
children?: React.ReactNode;
|
|
display: boolean;
|
|
order: number;
|
|
component?: ComponentType;
|
|
invalidate?: boolean;
|
|
}
|
|
declare const Item: React.ForwardRefExoticComponent<ItemProps<unknown> & React.RefAttributes<any>>;
|
|
export default Item;
|