carbon-components-svelte/tests/InlineNotification/InlineNotification.close.test.svelte
2025-03-20 17:34:20 -07:00

12 lines
268 B
Svelte

<script lang="ts">
import { InlineNotification } from "carbon-components-svelte";
</script>
<InlineNotification
title="Error"
subtitle="An internal server error occurred."
on:close={(e) => {
e.preventDefault();
console.log("close", e.detail);
}}
/>