Class: PhlexIcons::Tabler::BrandGuardian

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

Instance Attribute Summary

Attributes inherited from Base

#variant

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#initialize, #view_template

Methods inherited from Base

#initialize, #view_template

Constructor Details

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

Instance Method Details

#filledObject

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/phlex-icons/tabler/brand_guardian.rb', line 7

def filled
  raise NotImplementedError
end

#outlineObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/phlex-icons/tabler/brand_guardian.rb', line 11

def outline
  svg(
    **attrs,
    xmlns: 'http://www.w3.org/2000/svg',
    viewbox: '0 0 24 24',
    fill: 'none',
    stroke: 'currentColor',
    stroke_width: '2',
    stroke_linecap: 'round',
    stroke_linejoin: 'round'
  ) do |s|
    s.path(d: 'M14 13h6')
    s.path(
      d:
        'M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z'
    )
    s.path(d: 'M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5')
    s.path(d: 'M15 13v8s2.77 -.37 4 -2v-6')
    s.path(d: 'M13.5 21h1.5')
    s.path(d: 'M13.5 3h1')
  end
end