// templui component checkbox - version: main installed by templui v0.71.0 package checkbox import ( "git.jmbit.de/jmb/scanfile/server/web/templui/components/icon" "git.jmbit.de/jmb/scanfile/server/web/templui/utils" ) type Props struct { ID string Class string Attributes templ.Attributes Name string Value string Disabled bool Required bool Checked bool Icon templ.Component } templ Checkbox(props ...Props) { {{ var p Props }} if len(props) > 0 { {{ p = props[0] }} }