Class: PhlexIcons::Tabler::BrandCucumber
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::BrandCucumber
show all
- Defined in:
- lib/phlex-icons/tabler/brand_cucumber.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/brand_cucumber.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
32
33
34
|
# File 'lib/phlex-icons/tabler/brand_cucumber.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:
'M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z'
)
s.path(d: 'M10.5 8l-.5 -1')
s.path(d: 'M13.5 14l.5 1')
s.path(d: 'M9 12.5l-1 .5')
s.path(d: 'M11 14l-.5 1')
s.path(d: 'M13 8l.5 -1')
s.path(d: 'M16 12.5l-1 -.5')
s.path(d: 'M9 10l-1 -.5')
end
end
|