diff options
author | Markus Wüstenberg | 2024-10-03 10:55:52 +0200 |
---|---|---|
committer | GitHub | 2024-10-03 10:55:52 +0200 |
commit | a58043d58789f95046a567d2ad1bde55e352d5f0 (patch) | |
tree | aef3ef6f2c1add6956a714ad338a4528bd8f4c57 /svg/attributes.go | |
parent | b7a00582ac0052652bc2857ab57016b9dd4f8b0c (diff) | |
download | gomponents-a58043d58789f95046a567d2ad1bde55e352d5f0.tar.lz gomponents-a58043d58789f95046a567d2ad1bde55e352d5f0.tar.zst gomponents-a58043d58789f95046a567d2ad1bde55e352d5f0.zip |
Remove SVG package (#214)
Because the added value of having this was very small, and I don't want to confuse people about what's properly supported, I've removed the SVG package. As #196 showed, there can easily be conflicts between HTML and SVG, and the rendering isn't really set up for anything else than HTML. It's still easy to create SVG elements: `html.SVG` exists in this repo, and the rest is often just a string that can be included using `g.Raw`. Fixes #206
Diffstat (limited to 'svg/attributes.go')
-rw-r--r-- | svg/attributes.go | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/svg/attributes.go b/svg/attributes.go deleted file mode 100644 index 52c9c61..0000000 --- a/svg/attributes.go +++ /dev/null @@ -1,33 +0,0 @@ -package svg - -import ( - g "github.com/maragudk/gomponents" -) - -func ClipRule(v string) g.Node { - return g.Attr("clip-rule", v) -} - -func D(v string) g.Node { - return g.Attr("d", v) -} - -func Fill(v string) g.Node { - return g.Attr("fill", v) -} - -func FillRule(v string) g.Node { - return g.Attr("fill-rule", v) -} - -func Stroke(v string) g.Node { - return g.Attr("stroke", v) -} - -func StrokeWidth(v string) g.Node { - return g.Attr("stroke-width", v) -} - -func ViewBox(v string) g.Node { - return g.Attr("viewBox", v) -} |