logo-icon
Alert
Alert

Title


Title


cancel

Title

I am a description

svelte
<script lang="ts">
	import { Alert } from 'stwui';
</script>

<Alert>
	<Alert.Title slot="title">Title</Alert.Title>
</Alert>
<br />
<Alert type="warn">
	<Alert.Title slot="title">Title</Alert.Title>
</Alert>
<br />
<Alert type="error">
	<Alert.Icon slot="icon">
		<Icon icon="cancel" class="text-current" />
	</Alert.Icon>
	<Alert.Title slot="title">Title</Alert.Title>
	<Alert.Description slot="description">I am a description</Alert.Description>
	<Button
		slot="extra"
		shape="circle"
		class="top-[-0.5rem] right-[-0.5rem] text-error-icon dark:text-dark-error-icon"
		on:click={() => console.log('I clicked extra')}
	>
		<Button.Icon slot="icon" icon="close" />
	</Button>
</Alert>

Alert Props

type 'info' | 'warn' | 'success' | 'error' info

Alert Slots

icon <Alert.Icon slot="icon" />
title <Alert.Title slot="title" />
description <Alert.Description slot="description" />
extra

Alert.Icon Props