mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
14 lines
420 B
Svelte
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>
|