The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Moonshine::Bootstrap::Component::LinkedLiSpan

SYNOPSIS

    $self->linked_li_span({ link => { href => 'http://some.url' }, span => { data => 'Action'} )

Options

Disabled
    $self->linked_li( disabled => 1, ... )
    <li class="disabled"><a href="#"><span aria-hidden="true">Disabled link</span></a></li>
    $self->linked_li({ link => { href => "#" , ... } })
    <a href="#">
span
    $self->linked_li({ span => { data => [1, 2, 3] }, ... })
    123

Sample Output

    <li><a href="http://some.url"><span aria-hidden="true">Action</span></a></li>