-
Notifications
You must be signed in to change notification settings - Fork 1
/
basket_cog.rb
43 lines (41 loc) · 1.29 KB
/
basket_cog.rb
1
2
3
4
5
6
7
8
9
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
37
38
39
40
41
42
43
# frozen_string_literal: true
# rubocop:disable Layout/LineLength,Metrics/MethodLength
module Phlex
module Icons
module Tabler
class BasketCog < Base
def filled
raise NotImplementedError
end
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: 'M17 10l-2 -6')
s.path(d: 'M7 10l2 -6')
s.path(
d:
'M12 20h-4.756a3 3 0 0 1 -2.965 -2.544l-1.255 -7.152a2 2 0 0 1 1.977 -2.304h13.999a2 2 0 0 1 1.977 2.304l-.267 1.522'
)
s.path(d: 'M10 14a2 2 0 1 0 4 0a2 2 0 0 0 -4 0')
s.path(d: 'M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0')
s.path(d: 'M19.001 15.5v1.5')
s.path(d: 'M19.001 21v1.5')
s.path(d: 'M22.032 17.25l-1.299 .75')
s.path(d: 'M17.27 20l-1.3 .75')
s.path(d: 'M15.97 17.25l1.3 .75')
s.path(d: 'M20.733 20l1.3 .75')
end
end
end
end
end
end
# rubocop:enable Layout/LineLength,Metrics/MethodLength