UNPKG

@tarojs/components

Version:
15 lines (14 loc) 391 B
import type { FunctionalComponent } from '../../stencil-public-runtime'; interface ITabbarItemProps { index: number; isSelected?: boolean; textColor?: string; badgeText?: string; iconPath: string; showRedDot?: boolean; pagePath?: string; text?: string; onSelect: (index: number) => void; } export declare const TabbarItem: FunctionalComponent<ITabbarItemProps>; export {};