Class: PhlexIcons::Tabler::FishOff
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::FishOff
show all
- Defined in:
- lib/phlex-icons/tabler/fish_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
7
8
9
|
# File 'lib/phlex-icons/tabler/fish_off.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
|
# File 'lib/phlex-icons/tabler/fish_off.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: 'M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635')
s.path(
d:
'M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786'
)
s.path(d: 'M18 11v.01')
s.path(d: 'M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331')
s.path(d: 'M3 3l18 18')
end
end
|