-
Notifications
You must be signed in to change notification settings - Fork 0
/
icon.go
58 lines (55 loc) · 1.19 KB
/
icon.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
51
52
53
54
55
56
57
58
package modal
import app "github.com/maxence-charriere/go-app/v9/pkg/app"
type Icon struct {
app.Compo
}
func (c *Icon) Render() app.UI {
return app.Div().
Class("pf-c-modal-box").
Aria("modal", true).
Aria("labelledby", "icon-title").
Aria("describedby", "icon-description").
Body(
app.Button().
Class("pf-c-button pf-m-plain").
Type("button").
Aria("label", "Close").
Body(
app.I().
Class("fas fa-times").
Aria("hidden", true),
),
app.Header().
Class("pf-c-modal-box__header").
Body(
app.H1().
Class("pf-c-modal-box__title pf-m-icon").
ID("icon-title").
Body(
app.Span().
Class("pf-c-modal-box__title-icon").
Body(
app.I().
Class("fas fa-fw fa-bullhorn").
Aria("hidden", true),
),
app.Span().
Class("pf-c-modal-box__title-text").
Body(
app.Text("Modal with icon title"),
),
),
),
app.Div().
Class("pf-c-modal-box__body").
ID("icon-description").
Body(
app.Text("Modal description"),
),
app.Footer().
Class("pf-c-modal-box__footer").
Body(
app.Text("Modal footer"),
),
)
}