Class: PhlexIcons::Tabler::BrandStorj

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/tabler/brand_storj.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_storj.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
33
34
35
36
37
38
39
40
# File 'lib/phlex-icons/tabler/brand_storj.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: 'M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
    s.path(d: 'M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
    s.path(d: 'M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
    s.path(d: 'M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
    s.path(d: 'M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
    s.path(d: 'M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
    s.path(d: 'M12 21l-8 -4v-10l8 -4l8 4v10z')
    s.path(
      d:
        'M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z'
    )
    s.path(d: 'M4 7l4.323 2.702')
    s.path(d: 'M16.413 14.758l3.587 2.242')
    s.path(d: 'M4 17l3.529 -2.206')
    s.path(d: 'M14.609 10.37l5.391 -3.37')
    s.path(d: 'M12 3v5')
    s.path(d: 'M12 15v6')
  end
end