Class: PhlexIcons::Tabler::Hexagon3d
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::Hexagon3d
show all
- Defined in:
- lib/phlex-icons/tabler/hexagon_3d.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
Instance Method Details
#filled ⇒ Object
7
8
9
|
# File 'lib/phlex-icons/tabler/hexagon_3d.rb', line 7
def filled
raise NotImplementedError
end
|
#outline ⇒ Object
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# File 'lib/phlex-icons/tabler/hexagon_3d.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:
'M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z'
)
s.path(d: 'M12 16.5v4.5')
s.path(d: 'M4.5 7.5l3.5 2.5')
s.path(d: 'M16 10l4 -2.5')
s.path(d: 'M12 7.5v4.5l-4 2')
s.path(d: 'M12 12l4 2')
s.path(d: 'M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z')
end
end
|