package styles type Icon interface { Render() templ.Component } type Variant interface { Attributes() templ.Attributes } templ Spacer() {
} templ Rows() {
{ children... }
} templ Columns() {
{ children... }
} templ Layout(title string, remote bool) { @Fonts() @Styles() @Htmx() @Alpine() { title } @Toaster() {
{ children... }
} } templ LayoutNoBody(title string, remote bool) { @Fonts() @Styles() @Htmx() @Alpine() { title }
@Toaster() {
{ children... }
}
} templ OpenModal(title, description string) {
}