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

14 lines
420 B
Svelte

<script lang="ts">
import {
InlineNotification,
NotificationActionButton,
} from "carbon-components-svelte";
</script>
<InlineNotification kind="warning">
<strong slot="title">Custom Title:</strong>
<strong slot="subtitle">Custom subtitle content.</strong>
<svelte:fragment slot="actions">
<NotificationActionButton>Learn more</NotificationActionButton>
</svelte:fragment>
</InlineNotification>