const { html } = require('lit-element')
const { LegacyButton } = require('./button')
class LegacyButtonLink extends LegacyButton {
constructor () {
super()
this.href = ''
}
static get properties () {
return {
size: {
type: String,
attribute: 'btn-width'
},
href: {
type: String,
attribute: 'go-to'
}
}
}
render () {
return html`
`
}
}
window.customElements.define('legacy-button-link', LegacyButtonLink)