import Base from './base'
|
class Search extends Base {
|
constructor (attr) {
|
super(attr)
|
this.fontColor = attr.fontColor || null
|
this.fontSize = attr.fontSize || 12
|
this.bgColor = attr.bgColor || null
|
this.borderRadius = attr.borderRadius || 0
|
this.strokeColor = attr.strokeColor || null
|
this.strokeSize = attr.strokeSize || 0
|
this.tipColor = attr.tipColor || null
|
this.fixedPosition = attr.fixedPosition || false
|
}
|
}
|
export default Search
|