<KButton @click="show = !show">Toggle Toast</KButton>
<k-toast :show="show" variant="info">
<template #description>
<div class="flex justify-between items-start w-full">
<span>Description</span>
<button @click="show = false">
<KIconCross />
</button>
</div>
</template>
</k-toast><script setup lang="ts">
const show = ref(false)
</script>