mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-18 22:53:20 +02:00
12 lines
308 B
Svelte
12 lines
308 B
Svelte
<script lang="ts">
|
|
import type { ComponentType } from 'svelte';
|
|
|
|
export let icon: ComponentType;
|
|
</script>
|
|
|
|
<div class="absolute inset-0 bg-secondary-800/75 flex items-center justify-center">
|
|
<div class="rounded-full p-2.5 bg-secondary-800/75">
|
|
<svelte:component this={icon} size={32} />
|
|
</div>
|
|
</div>
|