-
Notifications
You must be signed in to change notification settings - Fork 0
/
widthcontrol.go
50 lines (47 loc) · 1015 Bytes
/
widthcontrol.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package toolbar
import app "github.com/maxence-charriere/go-app/v9/pkg/app"
type WidthControl struct {
app.Compo
}
func (c *WidthControl) Render() app.UI {
return app.Div().
Class("pf-c-toolbar").
ID("toolbar-width-control").
Body(
app.Div().
Class("pf-c-toolbar__content").
Body(
app.Div().
Class("pf-c-toolbar__content-section").
Body(
app.Div().
Class("pf-c-toolbar__group").
Body(
app.Div().
Class("pf-c-toolbar__item").
Style("", "").
Body(
app.Text("Item"),
),
app.Div().
Class("pf-c-toolbar__item").
Body(
app.Text("Item"),
),
),
app.Hr().
Class("pf-c-divider pf-m-vertical"),
app.Div().
Class("pf-c-toolbar__item").
Body(
app.Text("Item"),
),
app.Div().
Class("pf-c-toolbar__item").
Body(
app.Text("Item"),
),
),
),
)
}