22 lines
605 B
Vue
22 lines
605 B
Vue
<script setup lang="ts">
|
|
import { useAppConfig } from '#imports'
|
|
import Callout from '#ui/components/prose/Callout.vue'
|
|
|
|
// Set `::note{icon=""}` in the markdown to hide the default icon for that
|
|
// one instance (useful when the body already starts with its own emoji).
|
|
const props = withDefaults(defineProps<{ icon?: string }>(), {
|
|
icon: undefined,
|
|
})
|
|
const appConfig = useAppConfig()
|
|
const icon = computed(() => props.icon !== undefined ? props.icon : appConfig.ui.icons.info)
|
|
</script>
|
|
|
|
<template>
|
|
<Callout
|
|
color="info"
|
|
:icon="icon"
|
|
>
|
|
<slot mdc-unwrap="p" />
|
|
</Callout>
|
|
</template>
|