diff --git a/Ooui/Label.cs b/Ooui/Label.cs new file mode 100644 index 0000000..9dcfd7f --- /dev/null +++ b/Ooui/Label.cs @@ -0,0 +1,18 @@ +using System; + +namespace Ooui +{ + public class Label : Element + { + Element htmlFor = null; + public Element For { + get => htmlFor; + set => SetProperty (ref htmlFor, value, "htmlFor"); + } + + public Label () + : base ("label") + { + } + } +}