10 lines
417 B
Plaintext
10 lines
417 B
Plaintext
component WarningCard {
|
|
props {
|
|
title = ""
|
|
description = ""
|
|
href = ""
|
|
class = ""
|
|
}
|
|
view { <article class="wire-card wire-catalog-card wire-catalog-card--warning {class}"><h3 data-show="title">{title}</h3><p data-show="description">{description}</p><slot /><a data-show="href" href="{href}" class="wire-catalog-card__link"><span class="wire-visually-hidden">Open {title}</span></a></article> }
|
|
}
|