@opensig/opendesign
Version:
34 lines (33 loc) • 496 B
JavaScript
const iconProps = {
/**
* @zh-CN 图标组件
* @en-US Icon component
*/
icon: {
type: Object
},
/**
* @zh-CN 是否为按钮图标
* @en-US Whether it is a button icon
*/
button: {
type: Boolean
},
/**
* @zh-CN 是否禁用
* @en-US Whether to disable
*/
disabled: {
type: Boolean
},
/**
* @zh-CN 是否为 loading 状态
* @en-US Whether it is in loading state
*/
loading: {
type: Boolean
}
};
export {
iconProps
};