You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
467 B

<script lang="ts">
import Icon from "fa-svelte"
import icons from "../external/icons";
import type { IconName } from "../external/icons";
export let name: IconName = "question";
export let block: boolean = false;
</script>
{#if block}
<div>
<Icon class="activity-icon" icon={icons[name] || icons.question} />
</div>
{:else}
<Icon class="activity-icon" icon={icons[name] || icons.question} />
{/if}
<style>
div {
margin: auto;
}
</style>