Class: PhlexIcons::Tabler::ZoomReplace
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::ZoomReplace
show all
- Defined in:
- lib/phlex-icons/tabler/zoom_replace.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/zoom_replace.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
|
# File 'lib/phlex-icons/tabler/zoom_replace.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: 'M21 21l-6 -6')
s.path(d: 'M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403')
s.path(d: 'M17 4v4h-4')
s.path(d: 'M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403')
s.path(d: 'M3 16v-4h4')
end
end
|