UNPKG

883 BTypeScriptView Raw
1import { ComponentType } from 'react'
2import { StandardProps } from './common'
3interface TabItemProps extends StandardProps {
4 /** tab-item 内显示的文字
5 * @supported swan
6 * @default 无
7 */
8 label?: string
9 /** tab-item 对应的 name 值
10 * @supported swan
11 * @default 无
12 */
13 name?: string
14 /** 徽标类型 badge-type 分为圆点“dot”和文本“text”,不设置 badge-type 则不显示徽标
15 * @supported swan
16 * @default 无
17 */
18 badgeType?: string
19 /** badge-type 为 text 的时候,徽标内的数字,为空时badge-type="text"不生效
20 * @supported swan
21 * @default 无
22 */
23 badgeText?: string
24}
25/** 标签栏子项
26 * @classification navig
27 * @supported swan
28 * @see https://smartprogram.baidu.com/docs/develop/component/tab-item/
29 */
30declare const TabItem: ComponentType<TabItemProps>
31export { TabItem, TabItemProps }