mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
13 lines
272 B
Svelte
13 lines
272 B
Svelte
<script lang="ts">
|
|
import { ToastNotification } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<ToastNotification
|
|
title="Custom"
|
|
subtitle="Message"
|
|
caption="2024-03-21 12:00:00"
|
|
on:close={(e) => {
|
|
e.preventDefault();
|
|
console.log("close", e.detail);
|
|
}}
|
|
/>
|