20 lines
557 B
Plaintext
20 lines
557 B
Plaintext
component Alert {
|
|
props {
|
|
size = "default"
|
|
color = "primary"
|
|
title = "Alert"
|
|
description = ""
|
|
items = []
|
|
variant = "default"
|
|
class = ""
|
|
}
|
|
view {
|
|
<section class="wire-next wire-next--color-{color} wire-next--size-{size} wire-next--alert wire-next--variant-{variant} {class}">
|
|
{#if title}<strong>{title}</strong>{/if}
|
|
{#if description}<p>{description}</p>{/if}
|
|
{#if items}<div class="wire-next__items">{#each items as item}<span>{item.label}</span>{/each}</div>{/if}
|
|
<slot />
|
|
</section>
|
|
}
|
|
}
|