Class: PhlexIcons::Tabler::Dog
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- PhlexIcons::Tabler::Dog
show all
- Defined in:
- lib/phlex-icons/tabler/dog.rb
Instance Attribute Summary
Attributes inherited from Base
#attrs
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #view_template
Instance Method Details
#filled ⇒ Object
6
7
8
|
# File 'lib/phlex-icons/tabler/dog.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
32
33
34
35
36
|
# File 'lib/phlex-icons/tabler/dog.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: 'M11 5h2')
s.path(d: 'M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8')
s.path(d: 'M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z')
s.path(d: 'M12 18v2')
s.path(d: 'M10 11v.01')
s.path(d: 'M14 11v.01')
s.path(
d:
'M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z'
)
s.path(
d:
'M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z'
)
end
end
|