mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
16 lines
470 B
Templ
16 lines
470 B
Templ
package button
|
|||
|
|
|
||
|
|
templ Primary(href string, text string) {
|
||
|
|
<div>
|
||
|
|
<div class="btn cursor-pointer text-zinc-100 bg-zinc-900 hover:bg-zinc-800 w-full shadow" hx-swap="afterend" hx-get={ href }>
|
||
|
|
{ text }
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
}
|
||
|
|
|
||
|
|
templ Secondary(href string, text string) {
|
||
|
|
<div>
|
||
|
|
<div x-on:click="toast('Default Toast Notification', 'default', '', 'top-center')" class="btn cursor-pointer text-zinc-600 bg-white hover:text-zinc-900 w-full shadow">{ text }</div>
|
||
|
|
</div>
|
||
|
|
}
|