Skip to content

Commit e8c7b7f

Browse files
committed
chore(skeleton): base icon component
1 parent cf1ca86 commit e8c7b7f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Diff for: components/service/Icon.vue

+12
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)