mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
9 lines
314 B
Svelte
9 lines
314 B
Svelte
<script lang="ts">
|
|
import { ToastNotification } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<ToastNotification kind="warning">
|
|
<strong slot="title">Custom Title:</strong>
|
|
<strong slot="subtitle">Custom subtitle content.</strong>
|
|
<strong slot="caption">Custom caption content.</strong>
|
|
</ToastNotification>
|