@alitajs/antd-plus
Version:
基于 ant-design 封装的偏业务组件
12 lines (11 loc) • 350 B
TypeScript
import React, { CSSProperties } from 'react';
export interface ItemProps {
prefixCls?: string;
className?: string;
style?: CSSProperties;
key?: string;
children?: any;
onClick?: (key: string) => void;
}
declare const Item: React.ForwardRefExoticComponent<ItemProps & React.RefAttributes<HTMLDivElement>>;
export default Item;