Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / Layout / ActionBar / Separator.pm
diff --git a/SL/Layout/ActionBar/Separator.pm b/SL/Layout/ActionBar/Separator.pm
new file mode 100644 (file)
index 0000000..afa202e
--- /dev/null
@@ -0,0 +1,18 @@
+package SL::Layout::ActionBar::Separator;
+
+use strict;
+use parent qw(SL::Layout::ActionBar::Action);
+
+use SL::Presenter::Tag qw(html_tag);
+
+sub from_params { $_[0]->new }
+
+sub render {
+  html_tag('div', '', class => 'layout-actionbar-separator');
+}
+
+sub script {
+  ()
+}
+
+1;