diff --git a/src/Perspex.Controls/Perspex.Controls.csproj b/src/Perspex.Controls/Perspex.Controls.csproj
index 9fb34fb553..c8b066abd2 100644
--- a/src/Perspex.Controls/Perspex.Controls.csproj
+++ b/src/Perspex.Controls/Perspex.Controls.csproj
@@ -45,6 +45,7 @@
+
diff --git a/src/Perspex.Controls/Separator.cs b/src/Perspex.Controls/Separator.cs
new file mode 100644
index 0000000000..a75be02b26
--- /dev/null
+++ b/src/Perspex.Controls/Separator.cs
@@ -0,0 +1,19 @@
+// Copyright (c) The Perspex Project. All rights reserved.
+// Licensed under the MIT license. See licence.md file in the project root for full license information.
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Perspex.Controls.Primitives;
+
+namespace Perspex.Controls
+{
+ ///
+ /// A separator control.
+ ///
+ public class Separator : TemplatedControl
+ {
+ }
+}