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.
ngcp-csc-ui/src/components/CscInlineAlertInfo.vue

23 lines
416 B

<template>
<csc-inline-alert
icon="info"
color="info"
v-bind="$attrs"
>
<slot />
<template
#action
>
<slot
name="action"
/>
</template>
</csc-inline-alert>
</template>
<script setup>
import CscInlineAlert from 'components/CscInlineAlert'
defineOptions({ name: 'CscInlineAlertInfo' })
</script>