carbon-components-svelte/tests/ToastNotification/ToastNotificationCustom.test.svelte
2025-03-24 09:35:34 -07:00

9 lines
312 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>