misc_pterodactyl-panel/resources/assets/scripts/components/Icon.vue
2018-09-13 21:23:13 -07:00

18 lines
390 B
Vue

<template>
<i class="ion" :class="iconClass"></i>
</template>
<script>
export default {
props: {
type: {type: String, required: true},
iconStyle: {type: String, default: 'ios'},
},
computed: {
iconClass: function () {
return `ion-${this.iconStyle}-${this.type}`;
}
},
}
</script>