diff --git a/Ooui/Span.cs b/Ooui/Span.cs index 980077e..cdfc54a 100644 --- a/Ooui/Span.cs +++ b/Ooui/Span.cs @@ -8,5 +8,11 @@ namespace Ooui : base ("span") { } + + public Span (string text) + : this () + { + Text = text; + } } }