20 lines
466 B
Plaintext
20 lines
466 B
Plaintext
component Image {
|
|
props {
|
|
size = "default"
|
|
color = "primary"
|
|
src = ""
|
|
alt = ""
|
|
width = ""
|
|
height = ""
|
|
loading = "lazy"
|
|
rounded = false
|
|
class = ""
|
|
}
|
|
view {
|
|
<figure class="wire-next wire-next--color-{color} wire-next--size-{size} wire-next--image {rounded ? 'wire-next--rounded' : ''} {class}">
|
|
<img src="{src}" alt="{alt}" width="{width}" height="{height}" loading="{loading}" />
|
|
<slot />
|
|
</figure>
|
|
}
|
|
}
|