Files

17 lines
415 B
Vue
Raw Permalink Normal View History

2026-07-25 10:39:40 -04:00
<script setup lang="ts">
import type { IconName } from '~/lib/icons'
import { getIcon } from '~/lib/icons'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
const props = defineProps<{
name: IconName
class?: string
}>()
const icon = computed(() => getIcon(props.name))
</script>
<template>
2026-08-07 12:41:20 -04:00
<FontAwesomeIcon :icon="icon" :class="props.class" :style="{ verticalAlign: 'middle' }" />
2026-07-25 10:39:40 -04:00
</template>