]> wagnertech.de Git - mfinanz.git/blob - SL/Layout/ActionBar/Separator.pm
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[mfinanz.git] / SL / Layout / ActionBar / Separator.pm
1 package SL::Layout::ActionBar::Separator;
2
3 use strict;
4 use parent qw(SL::Layout::ActionBar::Action);
5
6 use SL::Presenter::Tag qw(html_tag);
7
8 sub from_params { $_[0]->new }
9
10 sub render {
11   html_tag('div', '', class => 'layout-actionbar-separator');
12 }
13
14 sub script {
15   ()
16 }
17
18 1;