Files
AirportAlphabetGame/AirportAlphabetGame/Svg.fs
2024-03-20 19:28:35 +10:00

15 lines
332 B
Forth

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"