Class: PhlexIcons::Tabler::RippleOff
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::RippleOff
show all
- Defined in:
- lib/phlex-icons/tabler/ripple_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/ripple_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
|
# File 'lib/phlex-icons/tabler/ripple_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:
'M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0'
)
s.path(d: 'M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266')
s.path(
d: 'M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429'
)
s.path(d: 'M3 3l18 18')
end
end
|