| Current Path : /var/www/html/dynaweb.blunetdev.com/node_modules/vuesax/src/icons/ |
| Current File : /var/www/html/dynaweb.blunetdev.com/node_modules/vuesax/src/icons/arrow.ts |
import Vue, { VNode } from 'vue'
import { Component, Prop } from 'vue-property-decorator'
import './icons.sass'
@Component
export default class VsIconClose extends Vue {
@Prop({ type: Boolean, default: false }) public less!: boolean
render(h: any): VNode {
const icon = h('i', {
staticClass: 'vs-icon-arrow',
class: {
less: this.less
},
ref: 'icon',
on: {
...this.$listeners
}
})
return icon
}
}