@opensig/opendesign
Version:
29 lines (28 loc) • 402 B
JavaScript
const ResultStatusTypes = ["info", "success", "warning", "danger"];
const resultProps = {
/**
* @zh-CN 状态
* @en-US Status.
*/
status: {
type: String
},
/**
* @zh-CN 标题
* @en-US Title.
*/
title: {
type: String
},
/**
* @zh-CN 描述
* @en-US Description.
*/
description: {
type: String
}
};
export {
ResultStatusTypes,
resultProps
};