timeshare/components/label/label.templ
2025-08-30 13:06:28 -07:00

43 lines
823 B
Plaintext

// templui component label - version: v0.93.0 installed by templui v0.93.0
package label
import "git.hafen.run/lukas/timeshare/utils"
type Props struct {
ID string
Class string
Attributes templ.Attributes
For string
Error string
}
templ Label(props ...Props) {
{{ var p Props }}
if len(props) > 0 {
{{ p = props[0] }}
}
<label
if p.ID != "" {
id={ p.ID }
}
if p.For != "" {
for={ p.For }
}
class={
utils.TwMerge(
"text-sm font-medium leading-none inline-block",
utils.If(len(p.Error) > 0, "text-destructive"),
p.Class,
),
}
data-tui-label-disabled-style="opacity-50 cursor-not-allowed"
{ p.Attributes... }
>
{ children... }
</label>
}
templ Script() {
<script defer nonce={ templ.GetNonce(ctx) } src="/assets/js/label.min.js"></script>
}