all repos — gomponents @ b7a00582ac0052652bc2857ab57016b9dd4f8b0c

HTML components in pure Go

svg/elements.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Package svg provides common SVG elements and attributes.
// See https://developer.mozilla.org/en-US/docs/Web/SVG/Element for an overview.
package svg

import (
	g "github.com/maragudk/gomponents"
)

func Path(children ...g.Node) g.Node {
	return g.El("path", children...)
}

func SVG(children ...g.Node) g.Node {
	return g.El("svg", g.Attr("xmlns", "http://www.w3.org/2000/svg"), g.Group(children))
}