11 lines
448 B
Plaintext
11 lines
448 B
Plaintext
component SolutionSection {
|
|
props {
|
|
eyebrow = ""
|
|
title = ""
|
|
description = ""
|
|
align = "start"
|
|
class = ""
|
|
}
|
|
view { <section class="wire-catalog-section wire-text--{align} {class}"><header data-show="eyebrow || title || description"><span data-show="eyebrow" class="wire-eyebrow">{eyebrow}</span><h2 data-show="title">{title}</h2><p data-show="description" class="wire-muted">{description}</p></header><slot /></section> }
|
|
}
|