Juan Felipe Zapata Moreno be89d18e74 Init
2025-07-01 10:36:19 -06:00

19 lines
305 B
Vue

<script setup>
import { computed } from 'vue';
const props = defineProps({
name: String,
type: {
default: 'fab',
type: String
}
})
const classes = computed(() => {
return `${props.type} fa-${props.name}`
});
</script>
<template>
<i :class="classes"></i>
</template>