47 lines
749 B
JavaScript
47 lines
749 B
JavaScript
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',
|
|
},
|
|
shape: {
|
|
type: String,
|
|
value: 'square',
|
|
},
|
|
value: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
};
|
|
export default props;
|