// templui component checkbox - version: v0.94.0 installed by templui v0.94.0 package checkbox import ( "git.hafen.run/lukas/timeshare/components/icon" "git.hafen.run/lukas/timeshare/utils" ) type Props struct { ID string Class string Attributes templ.Attributes Name string Value string Disabled bool Required bool Checked bool Form string Icon templ.Component } templ Checkbox(props ...Props) { {{ var p Props }} if len(props) > 0 { {{ p = props[0] }} }