create dashboard layout
This commit is contained in:
16
resources/js/Components/Icon.vue
Normal file
16
resources/js/Components/Icon.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<script setup>
|
||||
const { type, name } = defineProps({
|
||||
type: {
|
||||
type: String,
|
||||
default: 'fa',
|
||||
},
|
||||
name: {
|
||||
type: String,
|
||||
default: 'circle',
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<i :class="`${type} fa-${name}`"></i>
|
||||
</template>
|
||||
Reference in New Issue
Block a user