UNPKG

@nutui/nutui-react

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

13 lines (12 loc) 382 B
import { FunctionComponent, ReactNode } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface TabbarItemProps extends BasicComponent { title: ReactNode; icon: ReactNode; value: ReactNode; dot: boolean; max: number; top: string; right: string; } export declare const TabbarItem: FunctionComponent<Partial<TabbarItemProps>>;