/** * Label * @cloud */ export interface LabelProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 图标 */ iconUrl: string; /** * 标题 */ title: string; /** * 值 */ value: string; /** * 跳转链接 */ url: string; }