themes-kindergarten/button_override.templ
Alex Dunmow ffe46a146c initial: theme plugin kindergarten
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>
2026-06-06 14:11:35 +08:00

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>
}
}