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.
51 lines
831 B
51 lines
831 B
const props = {
|
|
action: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
center: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
focus: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
label: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
leftIcon: {
|
|
type: String,
|
|
value: 'search',
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
rightIcon: {
|
|
type: String,
|
|
value: 'close-circle-filled',
|
|
},
|
|
shape: {
|
|
type: String,
|
|
value: 'square',
|
|
},
|
|
value: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
clearable: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
};
|
|
export default props;
|