14 lines
365 B
Plaintext
14 lines
365 B
Plaintext
component Typography {
|
|
props {
|
|
size = "default"
|
|
color = "primary"
|
|
columns = 2
|
|
gap = "md"
|
|
maxWidth = "xl"
|
|
class = ""
|
|
}
|
|
view {
|
|
<article class="wire-next wire-next--color-{color} wire-next--size-{size} wire-next--typography wire-next--gap-{gap} wire-next--columns-{columns} wire-next--max-{maxWidth} {class}"><slot /></article>
|
|
}
|
|
}
|