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

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>