antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
22 lines (21 loc) • 616 B
TypeScript
import { IBaseProps, IconType } from '../_util/base';
/**
* @description 标签,突出利益点、以及属性说明。
*/
export interface ITagProps extends IBaseProps {
/**
* @description 类型
* @default "fill"
*/
type?: 'outline' | 'fill' | 'fill-light';
/**
* @description 标签颜色, 内建 primary(蓝), success(绿), warning(黄), danger(红)
* @default "primary"
*/
color?: 'image' | 'primary' | 'success' | 'warning' | 'danger';
/**
* @description 图标
*/
icon?: IconType;
}
export declare const TagDefaultProps: Partial<ITagProps>;