Class: PhlexIcons::Tabler::BinaryTree2

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/tabler/binary_tree_2.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



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

def filled
  svg(
    **attrs,
    xmlns: 'http://www.w3.org/2000/svg',
    viewbox: '0 0 24 24',
    fill: 'currentColor'
  ) do |s|
    s.path(
      d:
        'M12 3a3 3 0 0 1 2.616 4.47l3.274 3.742a3 3 0 1 1 -1.505 1.318l-3.275 -3.743l-.11 .042v6.342a3.001 3.001 0 1 1 -2 0v-6.342l-.111 -.041l-3.274 3.742a3 3 0 1 1 -1.505 -1.318l3.273 -3.742a3 3 0 0 1 2.617 -4.47'
    )
  end
end

#outlineObject



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/binary_tree_2.rb', line 21

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 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z')
    s.path(d: 'M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z')
    s.path(d: 'M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z')
    s.path(d: 'M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z')
    s.path(d: 'M12 8v8')
    s.path(d: 'M6.316 12.496l4.368 -4.992')
    s.path(d: 'M17.684 12.496l-4.366 -4.99')
  end
end