Class: PhlexIcons::Remix::ServiceBellLine

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/remix/service_bell_line.rb

Instance Attribute Summary

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from PhlexIcons::Remix::Base

Instance Method Details

#view_templateObject



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/phlex-icons/remix/service_bell_line.rb', line 7

def view_template
  svg(
    **attrs,
    viewbox: '0 0 24 24',
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg'
  ) do |s|
    s.path(
      d:
        'M15 3H9V5H11V6.04938C5.94668 6.5511 2 10.8147 2 16V17H22V16C22 10.8147 18.0533 6.5511 13 6.04938V5H15V3ZM12 8C16.0796 8 19.446 11.0537 19.9381 15H4.06189C4.55399 11.0537 7.92038 8 12 8ZM23 20V18H1V20H23Z'
    )
  end
end