This commit is contained in:
2024-03-20 19:28:35 +10:00
commit dc1df70790
19 changed files with 867 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
module Svg
open Giraffe.ViewEngine
let svg = tag "svg"
let rect = tag "rect"
let animate = tag "animate"
let _attributeName = attr "attributeName"
let _attributeType = attr "attributeType"
let _values = attr "values"
let _dur = attr "dur"
let _fill = attr "fill"
let _begin = attr "begin"
let _repeatCount = attr "repeatCount"