Skip to content

Commit

Permalink
chore(skeleton): base icon component
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed Dec 24, 2023
1 parent cf1ca86 commit e8c7b7f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions components/service/Icon.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<template>
<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="">
</template>

<script setup lang="ts">
export interface Props {
type: 'solid' | 'gradient'
value: string
}
defineProps<Props>()
</script>

0 comments on commit e8c7b7f

Please sign in to comment.