Class: PhlexIcons::Tabler::BrandDocker
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Tabler::BrandDocker
show all
- Defined in:
- lib/phlex-icons/tabler/brand_docker.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_docker.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
35
|
# File 'lib/phlex-icons/tabler/brand_docker.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:
'M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z'
)
s.path(d: 'M5 10h3v3h-3z')
s.path(d: 'M8 10h3v3h-3z')
s.path(d: 'M11 10h3v3h-3z')
s.path(d: 'M8 7h3v3h-3z')
s.path(d: 'M11 7h3v3h-3z')
s.path(d: 'M11 4h3v3h-3z')
s.path(d: 'M4.571 18c1.5 0 2.047 -.074 2.958 -.78')
s.path(d: 'M10 16l0 .01')
end
end
|