mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
12 lines
268 B
Svelte
12 lines
268 B
Svelte
<script lang="ts">
|
|
import { InlineNotification } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<InlineNotification
|
|
title="Error"
|
|
subtitle="An internal server error occurred."
|
|
on:close={(e) => {
|
|
e.preventDefault();
|
|
console.log("close", e.detail);
|
|
}}
|
|
/>
|