diff options
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) -} |