Fix Compile Error (#2302)

This commit is contained in:
Philip Wedemann
2022-09-09 13:49:58 +02:00
committed by GitHub
parent 28755d0f70
commit 471d5c652d

View File

@@ -495,7 +495,7 @@ fun ElementScope<SVGElement>.Polygon(
TagElement(
elementBuilder = Polygon,
applyAttrs = {
points(points)
points(points = points)
attrs?.invoke(this)
},
content = content
@@ -512,7 +512,7 @@ fun ElementScope<SVGElement>.Polyline(
TagElement(
elementBuilder = Polyline,
applyAttrs = {
points(points)
points(points = points)
attrs?.invoke(this)
},
content = content