UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 260 B
import * as React from 'react'; export interface ItemProps { className: string; children: React.ReactNode; index: number; split?: React.ReactNode; style?: React.CSSProperties; } declare const Item: React.FC<ItemProps>; export default Item;