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.
40 lines
641 B
40 lines
641 B
const props = {
|
|
direction: {
|
|
type: String,
|
|
value: 'row',
|
|
},
|
|
duration: {
|
|
type: Number,
|
|
value: 2000,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
icon: {
|
|
type: null,
|
|
},
|
|
message: {
|
|
type: String,
|
|
},
|
|
overlayProps: {
|
|
type: Object,
|
|
value: {},
|
|
},
|
|
placement: {
|
|
type: String,
|
|
value: 'middle',
|
|
},
|
|
preventScrollThrough: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
showOverlay: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
theme: {
|
|
type: String,
|
|
},
|
|
};
|
|
export default props;
|