23 lines
389 B
JavaScript
23 lines
389 B
JavaScript
const props = {
|
|
buttonProps: {
|
|
type: Object,
|
|
},
|
|
customStyle: {
|
|
type: String,
|
|
value: 'right: 16px; bottom: 32px;',
|
|
},
|
|
icon: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
style: {
|
|
type: String,
|
|
value: 'right: 16px; bottom: 32px;',
|
|
},
|
|
text: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
};
|
|
export default props;
|