mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
Run npm run lint
This commit is contained in:
parent
b982387a8c
commit
2031cb7585
480 changed files with 8985 additions and 9048 deletions
|
@ -1,16 +1,16 @@
|
|||
<script lang="ts">
|
||||
import { InlineNotification } from "carbon-components-svelte";
|
||||
import type { ComponentProps } from "svelte";
|
||||
import { InlineNotification } from "carbon-components-svelte";
|
||||
import type { ComponentProps } from "svelte";
|
||||
|
||||
export let kind: ComponentProps<InlineNotification>["kind"] = "error";
|
||||
export let lowContrast = false;
|
||||
export let timeout = 0;
|
||||
export let role = "alert";
|
||||
export let title = "Error:";
|
||||
export let subtitle = "An internal server error occurred.";
|
||||
export let hideCloseButton = false;
|
||||
export let statusIconDescription = "";
|
||||
export let closeButtonDescription = "";
|
||||
export let kind: ComponentProps<InlineNotification>["kind"] = "error";
|
||||
export let lowContrast = false;
|
||||
export let timeout = 0;
|
||||
export let role = "alert";
|
||||
export let title = "Error:";
|
||||
export let subtitle = "An internal server error occurred.";
|
||||
export let hideCloseButton = false;
|
||||
export let statusIconDescription = "";
|
||||
export let closeButtonDescription = "";
|
||||
</script>
|
||||
|
||||
<InlineNotification
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue