16 lines
332 B
Vue
16 lines
332 B
Vue
<script setup lang="ts">
|
|
import BaseCard from "@/components/BaseCard.vue";
|
|
import { ComponentVariant } from "@/types";
|
|
</script>
|
|
|
|
<template>
|
|
<BaseCard
|
|
:variant="ComponentVariant.DANGER"
|
|
icon="warning"
|
|
:scrollIntoView="true"
|
|
>
|
|
<slot />
|
|
</BaseCard>
|
|
</template>
|
|
|
|
<style lang="scss"></style>
|