You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
608 B
39 lines
608 B
1 year ago
|
const props = {
|
||
|
content: {
|
||
|
type: String,
|
||
|
},
|
||
|
navigatorProps: {
|
||
|
type: Object,
|
||
|
},
|
||
|
prefixIcon: {
|
||
|
type: null,
|
||
|
},
|
||
|
size: {
|
||
|
type: String,
|
||
|
value: 'medium',
|
||
|
},
|
||
|
status: {
|
||
|
type: String,
|
||
|
value: 'normal',
|
||
|
},
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
hover: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
suffixIcon: {
|
||
|
type: null,
|
||
|
},
|
||
|
theme: {
|
||
|
type: String,
|
||
|
value: 'default',
|
||
|
},
|
||
|
underline: {
|
||
|
type: Boolean,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|