mirror of
https://github.com/ProjectSegfault/website.git
synced 2025-05-31 14:12:04 +05:30
12 lines
200 B
Svelte
12 lines
200 B
Svelte
<script lang="ts">
|
|
export let content: string = "";
|
|
export let icon: string = "";
|
|
</script>
|
|
|
|
<div class="flex items-center gap-2">
|
|
{#if icon}
|
|
<div class={icon} />
|
|
{/if}
|
|
<b>{content}</b>
|
|
</div>
|