4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 05:06:37 +00:00
AzuraCast/frontend/vue/components/Common/InfoCard.vue
2022-12-29 15:15:05 -06:00

17 lines
342 B
Vue

<template>
<div
class="card-body alert-info d-flex align-items-center"
role="alert"
>
<div class="flex-shrink-0 mr-2">
<icon icon="info" />
</div>
<div class="flex-fill">
<slot />
</div>
</div>
</template>
<script setup>
import Icon from './Icon';</script>