Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/kindergarten. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
11 lines
359 B
Plaintext
11 lines
359 B
Plaintext
package main
|
|
|
|
// kgButtonComponent renders a pill-shaped button override.
|
|
templ kgButtonComponent(data BigCTAData) {
|
|
if data.Label != "" {
|
|
<a href={ templ.SafeURL(data.Href) } class={ "kg-pill", ctaColorClass(data.ColorVariant) }>{ data.Label }</a>
|
|
} else {
|
|
<span class="kg-empty" data-empty="true">Add label and link to render this button.</span>
|
|
}
|
|
}
|