We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf1ca86 commit e8c7b7fCopy full SHA for e8c7b7f
components/service/Icon.vue
@@ -0,0 +1,12 @@
1
+<template>
2
+ <img src="http://localhost:8090/icons/authelia.png" alt="" class="block overflow-hidden bg-contain w-16 h-16 rounded-2xl border border-black/5 shadow-sm" style="">
3
+</template>
4
+
5
+<script setup lang="ts">
6
+export interface Props {
7
+ type: 'solid' | 'gradient'
8
+ value: string
9
+}
10
11
+defineProps<Props>()
12
+</script>
0 commit comments