Your IP : 216.73.216.79


Current Path : /var/www/html/learn/node_modules/vuesax/src/icons/
Upload File :
Current File : /var/www/html/learn/node_modules/vuesax/src/icons/close.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: String, default: null }) public hover!: string | null

  render(h: any): VNode {
    const icon = h('i', {
      staticClass: 'vs-icon-close',
      class: [
        `vs-icon-hover-${this.hover}`
      ],
      ref: 'icon'
    })

    return icon
  }
}