Class: PhlexIcons::Tabler::MichelinBibGourmand
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::MichelinBibGourmand
show all
- Defined in:
- lib/phlex-icons/tabler/michelin_bib_gourmand.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/michelin_bib_gourmand.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/michelin_bib_gourmand.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:
'M4.97 20c-2.395 -1.947 -4.763 -5.245 -1.005 -8c-.52 -4 3.442 -7.5 5.524 -7.5c.347 -1 1.499 -1.5 2.54 -1.5c1.04 0 2.135 .5 2.482 1.5c2.082 0 6.044 3.5 5.524 7.5c3.758 2.755 1.39 6.053 -1.005 8'
)
s.path(d: 'M9 11m-1 0a1 2 0 1 0 2 0a1 2 0 1 0 -2 0')
s.path(d: 'M15 11m-1 0a1 2 0 1 0 2 0a1 2 0 1 0 -2 0')
s.path(d: 'M8 17.085c3.5 2.712 6.5 2.712 9 -1.085')
s.path(d: 'M13 18.5c.815 -2.337 1.881 -1.472 2 -.55')
end
end
|