Class: PhlexIcons::Tabler::BiohazardOff
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::BiohazardOff
show all
- Defined in:
- lib/phlex-icons/tabler/biohazard_off.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
6
7
8
|
# File 'lib/phlex-icons/tabler/biohazard_off.rb', line 6
def filled
raise NotImplementedError
end
|
#outline ⇒ Object
10
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
|
# File 'lib/phlex-icons/tabler/biohazard_off.rb', line 10
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: 'M10.586 10.586a2 2 0 1 0 2.836 2.82')
s.path(
d:
'M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217'
)
s.path(d: 'M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693')
s.path(d: 'M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06')
s.path(d: 'M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217')
s.path(
d:
'M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172'
)
s.path(d: 'M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385')
s.path(d: 'M3 3l18 18')
end
end
|