phlex-icons 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/phlex/icons/lucide/calendar_sync.rb +31 -0
- data/lib/phlex/icons/lucide/grid_2x2.rb +2 -2
- data/lib/phlex/icons/lucide/image_upscale.rb +31 -0
- data/lib/phlex/icons/lucide/scale_3d.rb +2 -2
- data/lib/phlex/icons/lucide/ship.rb +8 -7
- data/lib/phlex/icons/lucide/shuffle.rb +4 -4
- data/lib/phlex/icons/lucide/venetian_mask.rb +5 -3
- data/lib/phlex/icons/lucide.rb +3 -1
- data/lib/phlex/icons/tabler/alarm_smoke.rb +48 -0
- data/lib/phlex/icons/tabler/assembly.rb +1 -1
- data/lib/phlex/icons/tabler/assembly_off.rb +2 -2
- data/lib/phlex/icons/tabler/badge_2k.rb +38 -0
- data/lib/phlex/icons/tabler/badge_3k.rb +38 -0
- data/lib/phlex/icons/tabler/badge_5k.rb +35 -0
- data/lib/phlex/icons/tabler/badge_8k.rb +2 -2
- data/lib/phlex/icons/tabler/blocks.rb +35 -0
- data/lib/phlex/icons/tabler/bowling.rb +38 -0
- data/lib/phlex/icons/tabler/browser.rb +3 -3
- data/lib/phlex/icons/tabler/browser_maximize.rb +34 -0
- data/lib/phlex/icons/tabler/browser_minus.rb +31 -0
- data/lib/phlex/icons/tabler/browser_plus.rb +3 -6
- data/lib/phlex/icons/tabler/browser_share.rb +34 -0
- data/lib/phlex/icons/tabler/calendar_event.rb +14 -1
- data/lib/phlex/icons/tabler/calendar_month.rb +30 -3
- data/lib/phlex/icons/tabler/calendar_week.rb +16 -1
- data/lib/phlex/icons/tabler/candle.rb +4 -4
- data/lib/phlex/icons/tabler/code_variable.rb +31 -0
- data/lib/phlex/icons/tabler/code_variable_minus.rb +31 -0
- data/lib/phlex/icons/tabler/code_variable_plus.rb +30 -0
- data/lib/phlex/icons/tabler/uhd.rb +32 -0
- data/lib/phlex/icons/tabler/wheat.rb +42 -0
- data/lib/phlex/icons/tabler/wheat_off.rb +48 -0
- data/lib/phlex/icons/tabler.rb +16 -1
- data/lib/phlex/icons/version.rb +1 -1
- metadata +19 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d31fa7a896d5ac1ef960c6b4a527c9f31ce649b4d7b24d76d712f478f2ad687
|
|
4
|
+
data.tar.gz: 9bd8e9662c73b3bd66826f6bc7a12c120a994357b9713a1fcb0040027ea7bee3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aab2a5b2777cfeadec61d4389cb11909f63b2d518b820606758d70d5c632c3f64356ea10bc174d6dd5c6951b67f0aa4fd482dabdf7c140303c381449a75777b4
|
|
7
|
+
data.tar.gz: cd125714d8bf2f66fb798466bceeca914cf426e0511fa772bd0ace0e121a3301452ebbf7ea44d5283499059aee8bbe19cb052bcc4b45f6e4f470564e23bfabf0
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Lucide
|
|
6
|
+
class CalendarSync < Base
|
|
7
|
+
def view_template
|
|
8
|
+
svg(
|
|
9
|
+
**attrs,
|
|
10
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
11
|
+
viewbox: '0 0 24 24',
|
|
12
|
+
fill: 'none',
|
|
13
|
+
stroke: 'currentColor',
|
|
14
|
+
stroke_width: '2',
|
|
15
|
+
stroke_linecap: 'round',
|
|
16
|
+
stroke_linejoin: 'round'
|
|
17
|
+
) do |s|
|
|
18
|
+
s.path(d: 'M11 10v4h4')
|
|
19
|
+
s.path(d: 'm11 14 1.535-1.605a5 5 0 0 1 8 1.5')
|
|
20
|
+
s.path(d: 'M16 2v4')
|
|
21
|
+
s.path(d: 'm21 18-1.535 1.605a5 5 0 0 1-8-1.5')
|
|
22
|
+
s.path(d: 'M21 22v-4h-4')
|
|
23
|
+
s.path(d: 'M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3')
|
|
24
|
+
s.path(d: 'M3 10h4')
|
|
25
|
+
s.path(d: 'M8 2v4')
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -15,9 +15,9 @@ module Phlex
|
|
|
15
15
|
stroke_linecap: 'round',
|
|
16
16
|
stroke_linejoin: 'round'
|
|
17
17
|
) do |s|
|
|
18
|
-
s.rect(width: '18', height: '18', x: '3', y: '3', rx: '2')
|
|
19
|
-
s.path(d: 'M3 12h18')
|
|
20
18
|
s.path(d: 'M12 3v18')
|
|
19
|
+
s.path(d: 'M3 12h18')
|
|
20
|
+
s.rect(x: '3', y: '3', width: '18', height: '18', rx: '2')
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Lucide
|
|
6
|
+
class ImageUpscale < Base
|
|
7
|
+
def view_template
|
|
8
|
+
svg(
|
|
9
|
+
**attrs,
|
|
10
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
11
|
+
viewbox: '0 0 24 24',
|
|
12
|
+
fill: 'none',
|
|
13
|
+
stroke: 'currentColor',
|
|
14
|
+
stroke_width: '2',
|
|
15
|
+
stroke_linecap: 'round',
|
|
16
|
+
stroke_linejoin: 'round'
|
|
17
|
+
) do |s|
|
|
18
|
+
s.path(d: 'M16 3h5v5')
|
|
19
|
+
s.path(d: 'M17 21h2a2 2 0 0 0 2-2')
|
|
20
|
+
s.path(d: 'M21 12v3')
|
|
21
|
+
s.path(d: 'm21 3-5 5')
|
|
22
|
+
s.path(d: 'M3 7V5a2 2 0 0 1 2-2')
|
|
23
|
+
s.path(d: 'm5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19')
|
|
24
|
+
s.path(d: 'M9 3h3')
|
|
25
|
+
s.rect(x: '3', y: '11', width: '10', height: '10', rx: '1')
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -15,10 +15,10 @@ module Phlex
|
|
|
15
15
|
stroke_linecap: 'round',
|
|
16
16
|
stroke_linejoin: 'round'
|
|
17
17
|
) do |s|
|
|
18
|
+
s.path(d: 'M5 7v11a1 1 0 0 0 1 1h11')
|
|
19
|
+
s.path(d: 'M5.293 18.707 11 13')
|
|
18
20
|
s.circle(cx: '19', cy: '19', r: '2')
|
|
19
21
|
s.circle(cx: '5', cy: '5', r: '2')
|
|
20
|
-
s.path(d: 'M5 7v12h12')
|
|
21
|
-
s.path(d: 'm5 19 6-6')
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
end
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# rubocop:disable Layout/LineLength
|
|
4
3
|
module Phlex
|
|
5
4
|
module Icons
|
|
6
5
|
module Lucide
|
|
@@ -16,18 +15,20 @@ module Phlex
|
|
|
16
15
|
stroke_linecap: 'round',
|
|
17
16
|
stroke_linejoin: 'round'
|
|
18
17
|
) do |s|
|
|
18
|
+
s.path(d: 'M12 10.189V14')
|
|
19
|
+
s.path(d: 'M12 2v3')
|
|
20
|
+
s.path(d: 'M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6')
|
|
19
21
|
s.path(
|
|
20
22
|
d:
|
|
21
|
-
'
|
|
23
|
+
'M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76'
|
|
24
|
+
)
|
|
25
|
+
s.path(
|
|
26
|
+
d:
|
|
27
|
+
'M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'
|
|
22
28
|
)
|
|
23
|
-
s.path(d: 'M19.38 20A11.6 11.6 0 0 0 21 14l-9-4-9 4c0 2.9.94 5.34 2.81 7.76')
|
|
24
|
-
s.path(d: 'M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6')
|
|
25
|
-
s.path(d: 'M12 10v4')
|
|
26
|
-
s.path(d: 'M12 2v3')
|
|
27
29
|
end
|
|
28
30
|
end
|
|
29
31
|
end
|
|
30
32
|
end
|
|
31
33
|
end
|
|
32
34
|
end
|
|
33
|
-
# rubocop:enable Layout/LineLength
|
|
@@ -15,11 +15,11 @@ module Phlex
|
|
|
15
15
|
stroke_linecap: 'round',
|
|
16
16
|
stroke_linejoin: 'round'
|
|
17
17
|
) do |s|
|
|
18
|
-
s.path(d: 'M2 18h1.4c1.3 0 2.5-.6 3.3-1.7l6.1-8.6c.7-1.1 2-1.7 3.3-1.7H22')
|
|
19
|
-
s.path(d: 'm18 2 4 4-4 4')
|
|
20
|
-
s.path(d: 'M2 6h1.9c1.5 0 2.9.9 3.6 2.2')
|
|
21
|
-
s.path(d: 'M22 18h-5.9c-1.3 0-2.6-.7-3.3-1.8l-.5-.8')
|
|
22
18
|
s.path(d: 'm18 14 4 4-4 4')
|
|
19
|
+
s.path(d: 'm18 2 4 4-4 4')
|
|
20
|
+
s.path(d: 'M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22')
|
|
21
|
+
s.path(d: 'M2 6h1.972a4 4 0 0 1 3.6 2.2')
|
|
22
|
+
s.path(d: 'M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45')
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
end
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
3
4
|
module Phlex
|
|
4
5
|
module Icons
|
|
5
6
|
module Lucide
|
|
@@ -15,15 +16,16 @@ module Phlex
|
|
|
15
16
|
stroke_linecap: 'round',
|
|
16
17
|
stroke_linejoin: 'round'
|
|
17
18
|
) do |s|
|
|
19
|
+
s.path(d: 'M18 11c-1.5 0-2.5.5-3 2')
|
|
18
20
|
s.path(
|
|
19
21
|
d:
|
|
20
|
-
'
|
|
22
|
+
'M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z'
|
|
21
23
|
)
|
|
22
|
-
s.path(d: 'M6 11c1.5 0
|
|
23
|
-
s.path(d: 'M18 11c-1.5 0-3 .5-3 2 2 0 3 0 3-2Z')
|
|
24
|
+
s.path(d: 'M6 11c1.5 0 2.5.5 3 2')
|
|
24
25
|
end
|
|
25
26
|
end
|
|
26
27
|
end
|
|
27
28
|
end
|
|
28
29
|
end
|
|
29
30
|
end
|
|
31
|
+
# rubocop:enable Layout/LineLength
|
data/lib/phlex/icons/lucide.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Phlex
|
|
4
4
|
module Icons
|
|
5
5
|
module Lucide # rubocop:disable Metrics/ModuleLength
|
|
6
|
-
VERSION = '0.
|
|
6
|
+
VERSION = '0.462.0'
|
|
7
7
|
VARIANTS = nil
|
|
8
8
|
|
|
9
9
|
extend Phlex::Kit
|
|
@@ -267,6 +267,7 @@ module Phlex
|
|
|
267
267
|
autoload :CalendarPlus2, 'phlex/icons/lucide/calendar_plus_2'
|
|
268
268
|
autoload :CalendarRange, 'phlex/icons/lucide/calendar_range'
|
|
269
269
|
autoload :CalendarSearch, 'phlex/icons/lucide/calendar_search'
|
|
270
|
+
autoload :CalendarSync, 'phlex/icons/lucide/calendar_sync'
|
|
270
271
|
autoload :CalendarX, 'phlex/icons/lucide/calendar_x'
|
|
271
272
|
autoload :CalendarX2, 'phlex/icons/lucide/calendar_x_2'
|
|
272
273
|
autoload :Camera, 'phlex/icons/lucide/camera'
|
|
@@ -779,6 +780,7 @@ module Phlex
|
|
|
779
780
|
autoload :ImagePlay, 'phlex/icons/lucide/image_play'
|
|
780
781
|
autoload :ImagePlus, 'phlex/icons/lucide/image_plus'
|
|
781
782
|
autoload :ImageUp, 'phlex/icons/lucide/image_up'
|
|
783
|
+
autoload :ImageUpscale, 'phlex/icons/lucide/image_upscale'
|
|
782
784
|
autoload :Images, 'phlex/icons/lucide/images'
|
|
783
785
|
autoload :Import, 'phlex/icons/lucide/import'
|
|
784
786
|
autoload :Inbox, 'phlex/icons/lucide/inbox'
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module Phlex
|
|
5
|
+
module Icons
|
|
6
|
+
module Tabler
|
|
7
|
+
class AlarmSmoke < Base
|
|
8
|
+
def filled
|
|
9
|
+
raise NotImplementedError
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def outline
|
|
13
|
+
svg(
|
|
14
|
+
**attrs,
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
viewbox: '0 0 24 24',
|
|
17
|
+
fill: 'none',
|
|
18
|
+
stroke: 'currentColor',
|
|
19
|
+
stroke_width: '2',
|
|
20
|
+
stroke_linecap: 'round',
|
|
21
|
+
stroke_linejoin: 'round'
|
|
22
|
+
) do |s|
|
|
23
|
+
s.path(
|
|
24
|
+
d: 'M18 8l-.8 3a1.25 1.25 0 0 1 -1.2 1h-8a1.25 1.25 0 0 1 -1.2 -1l-.8 -3'
|
|
25
|
+
)
|
|
26
|
+
s.path(
|
|
27
|
+
d:
|
|
28
|
+
'M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z'
|
|
29
|
+
)
|
|
30
|
+
s.path(
|
|
31
|
+
d:
|
|
32
|
+
'M12 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25'
|
|
33
|
+
)
|
|
34
|
+
s.path(
|
|
35
|
+
d:
|
|
36
|
+
'M7 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25'
|
|
37
|
+
)
|
|
38
|
+
s.path(
|
|
39
|
+
d:
|
|
40
|
+
'M17 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25'
|
|
41
|
+
)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -32,7 +32,7 @@ module Phlex
|
|
|
32
32
|
) do |s|
|
|
33
33
|
s.path(
|
|
34
34
|
d:
|
|
35
|
-
'M19.875 6.
|
|
35
|
+
'M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.27 2.27 0 0 1 -2.184 0l-6.75 -4.27a2.23 2.23 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98z'
|
|
36
36
|
)
|
|
37
37
|
s.path(
|
|
38
38
|
d:
|
|
@@ -22,11 +22,11 @@ module Phlex
|
|
|
22
22
|
) do |s|
|
|
23
23
|
s.path(
|
|
24
24
|
d:
|
|
25
|
-
'
|
|
25
|
+
'M18.376 18.377l-5.284 3.343a2.27 2.27 0 0 1 -2.184 0l-6.75 -4.27a2.23 2.23 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l1.328 -.783m2.514 -1.487l2.908 -1.71a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .417 -.118 .817 -.33 1.16'
|
|
26
26
|
)
|
|
27
27
|
s.path(
|
|
28
28
|
d:
|
|
29
|
-
'
|
|
29
|
+
'M14.855 14.855l-2.37 1.519a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.563 -.336m2.437 -1.454a1.03 1.03 0 0 1 1 0l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702'
|
|
30
30
|
)
|
|
31
31
|
s.path(d: 'M3 3l18 18')
|
|
32
32
|
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class Badge2k < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
|
25
|
+
)
|
|
26
|
+
s.path(d: 'M14 9v6')
|
|
27
|
+
s.path(d: 'M17 9l-2 3l2 3')
|
|
28
|
+
s.path(d: 'M15 12h-1')
|
|
29
|
+
s.path(
|
|
30
|
+
d:
|
|
31
|
+
'M7 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2'
|
|
32
|
+
)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class Badge3k < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
|
25
|
+
)
|
|
26
|
+
s.path(d: 'M14 9v6')
|
|
27
|
+
s.path(d: 'M17 9l-2 3l2 3')
|
|
28
|
+
s.path(d: 'M15 12h-1')
|
|
29
|
+
s.path(
|
|
30
|
+
d:
|
|
31
|
+
'M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5'
|
|
32
|
+
)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class Badge5k < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
|
25
|
+
)
|
|
26
|
+
s.path(d: 'M14 9v6')
|
|
27
|
+
s.path(d: 'M17 9l-2 3l2 3')
|
|
28
|
+
s.path(d: 'M15 12h-1')
|
|
29
|
+
s.path(d: 'M7 15h2a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3')
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -32,14 +32,14 @@ module Phlex
|
|
|
32
32
|
) do |s|
|
|
33
33
|
s.path(
|
|
34
34
|
d:
|
|
35
|
-
'M3
|
|
35
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
|
36
36
|
)
|
|
37
37
|
s.path(d: 'M14 9v6')
|
|
38
38
|
s.path(d: 'M17 9l-2 3l2 3')
|
|
39
39
|
s.path(d: 'M15 12h-1')
|
|
40
40
|
s.path(
|
|
41
41
|
d:
|
|
42
|
-
'M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1
|
|
42
|
+
'M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1zh-.5a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1'
|
|
43
43
|
)
|
|
44
44
|
end
|
|
45
45
|
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class Blocks < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M14 4a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z'
|
|
25
|
+
)
|
|
26
|
+
s.path(
|
|
27
|
+
d:
|
|
28
|
+
'M3 14h12a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h3a2 2 0 0 1 2 2v12'
|
|
29
|
+
)
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module Phlex
|
|
5
|
+
module Icons
|
|
6
|
+
module Tabler
|
|
7
|
+
class Bowling < Base
|
|
8
|
+
def filled
|
|
9
|
+
raise NotImplementedError
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def outline
|
|
13
|
+
svg(
|
|
14
|
+
**attrs,
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
viewbox: '0 0 24 24',
|
|
17
|
+
fill: 'none',
|
|
18
|
+
stroke: 'currentColor',
|
|
19
|
+
stroke_width: '2',
|
|
20
|
+
stroke_linecap: 'round',
|
|
21
|
+
stroke_linejoin: 'round'
|
|
22
|
+
) do |s|
|
|
23
|
+
s.path(d: 'M7 11v.01')
|
|
24
|
+
s.path(d: 'M11 10v.01')
|
|
25
|
+
s.path(d: 'M10 14v.01')
|
|
26
|
+
s.path(d: 'M11.059 6.07a8 8 0 1 0 .32 15.81')
|
|
27
|
+
s.path(d: 'M15.969 9h4')
|
|
28
|
+
s.path(
|
|
29
|
+
d:
|
|
30
|
+
'M14.969 5c0 1.5 1 2 1 4c0 2.5 -2 4.5 -2 7c0 2.6 1.9 6 1.9 6h4.1s2 -3.4 2 -6c0 -2.5 -2 -4.5 -2 -7c0 -2 1 -2.5 1 -4a3 3 0 1 0 -6 0'
|
|
31
|
+
)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -19,12 +19,12 @@ module Phlex
|
|
|
19
19
|
stroke_linecap: 'round',
|
|
20
20
|
stroke_linejoin: 'round'
|
|
21
21
|
) do |s|
|
|
22
|
+
s.path(d: 'M4 8h16')
|
|
22
23
|
s.path(
|
|
23
24
|
d:
|
|
24
|
-
'M4 4m0
|
|
25
|
+
'M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z'
|
|
25
26
|
)
|
|
26
|
-
s.path(d: '
|
|
27
|
-
s.path(d: 'M8 4l0 4')
|
|
27
|
+
s.path(d: 'M8 4v4')
|
|
28
28
|
end
|
|
29
29
|
end
|
|
30
30
|
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class BrowserMaximize < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(d: 'M4 8h8')
|
|
23
|
+
s.path(
|
|
24
|
+
d: 'M20 11.5v6.5a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6.5'
|
|
25
|
+
)
|
|
26
|
+
s.path(d: 'M8 4v4')
|
|
27
|
+
s.path(d: 'M16 8l5 -5')
|
|
28
|
+
s.path(d: 'M21 7.5v-4.5h-4.5')
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class BrowserMinus < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(d: 'M4 8h16')
|
|
23
|
+
s.path(d: 'M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9')
|
|
24
|
+
s.path(d: 'M8 4v4')
|
|
25
|
+
s.path(d: 'M16 19h6')
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -19,14 +19,11 @@ module Phlex
|
|
|
19
19
|
stroke_linecap: 'round',
|
|
20
20
|
stroke_linejoin: 'round'
|
|
21
21
|
) do |s|
|
|
22
|
-
s.path(
|
|
23
|
-
d:
|
|
24
|
-
'M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z'
|
|
25
|
-
)
|
|
26
22
|
s.path(d: 'M4 8h16')
|
|
23
|
+
s.path(d: 'M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6')
|
|
27
24
|
s.path(d: 'M8 4v4')
|
|
28
|
-
s.path(d: '
|
|
29
|
-
s.path(d: '
|
|
25
|
+
s.path(d: 'M16 19h6')
|
|
26
|
+
s.path(d: 'M19 16v6')
|
|
30
27
|
end
|
|
31
28
|
end
|
|
32
29
|
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class BrowserShare < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(d: 'M4 8h16')
|
|
23
|
+
s.path(
|
|
24
|
+
d: 'M12.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7'
|
|
25
|
+
)
|
|
26
|
+
s.path(d: 'M8 4v4')
|
|
27
|
+
s.path(d: 'M16 22l5 -5')
|
|
28
|
+
s.path(d: 'M21 21.5v-4.5h-4.5')
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
3
4
|
module Phlex
|
|
4
5
|
module Icons
|
|
5
6
|
module Tabler
|
|
6
7
|
class CalendarEvent < Base
|
|
7
8
|
def filled
|
|
8
|
-
|
|
9
|
+
svg(
|
|
10
|
+
**attrs,
|
|
11
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
12
|
+
viewbox: '0 0 24 24',
|
|
13
|
+
fill: 'currentColor'
|
|
14
|
+
) do |s|
|
|
15
|
+
s.path(
|
|
16
|
+
d:
|
|
17
|
+
'M16 2a1 1 0 0 1 .993 .883l.007 .117v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z'
|
|
18
|
+
)
|
|
19
|
+
s.path(d: 'M8 14h2v2h-2z')
|
|
20
|
+
end
|
|
9
21
|
end
|
|
10
22
|
|
|
11
23
|
def outline
|
|
@@ -33,3 +45,4 @@ module Phlex
|
|
|
33
45
|
end
|
|
34
46
|
end
|
|
35
47
|
end
|
|
48
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -1,12 +1,39 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# rubocop:disable Metrics/MethodLength
|
|
3
|
+
# rubocop:disable Layout/LineLength,Metrics/MethodLength
|
|
4
4
|
module Phlex
|
|
5
5
|
module Icons
|
|
6
6
|
module Tabler
|
|
7
7
|
class CalendarMonth < Base
|
|
8
8
|
def filled
|
|
9
|
-
|
|
9
|
+
svg(
|
|
10
|
+
**attrs,
|
|
11
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
12
|
+
viewbox: '0 0 24 24',
|
|
13
|
+
fill: 'currentColor'
|
|
14
|
+
) do |s|
|
|
15
|
+
s.path(
|
|
16
|
+
d:
|
|
17
|
+
'M16 2c.183 0 .355 .05 .502 .135l.033 .02c.28 .177 .465 .49 .465 .845v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 .514 -.874l.093 -.046l.066 -.025l.1 -.029l.107 -.019l.12 -.007q .083 0 .161 .013l.122 .029l.04 .012l.06 .023c.328 .135 .568 .44 .61 .806l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z'
|
|
18
|
+
)
|
|
19
|
+
s.path(
|
|
20
|
+
d:
|
|
21
|
+
'M9.015 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
|
22
|
+
)
|
|
23
|
+
s.path(
|
|
24
|
+
d:
|
|
25
|
+
'M13.015 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
|
26
|
+
)
|
|
27
|
+
s.path(
|
|
28
|
+
d:
|
|
29
|
+
'M17.02 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
|
30
|
+
)
|
|
31
|
+
s.path(d: 'M12.02 15a1 1 0 0 1 0 2a1.001 1.001 0 1 1 -.005 -2z')
|
|
32
|
+
s.path(
|
|
33
|
+
d:
|
|
34
|
+
'M9.015 16a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
|
35
|
+
)
|
|
36
|
+
end
|
|
10
37
|
end
|
|
11
38
|
|
|
12
39
|
def outline
|
|
@@ -40,4 +67,4 @@ module Phlex
|
|
|
40
67
|
end
|
|
41
68
|
end
|
|
42
69
|
end
|
|
43
|
-
# rubocop:enable Metrics/MethodLength
|
|
70
|
+
# rubocop:enable Layout/LineLength,Metrics/MethodLength
|
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
3
4
|
module Phlex
|
|
4
5
|
module Icons
|
|
5
6
|
module Tabler
|
|
6
7
|
class CalendarWeek < Base
|
|
7
8
|
def filled
|
|
8
|
-
|
|
9
|
+
svg(
|
|
10
|
+
**attrs,
|
|
11
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
12
|
+
viewbox: '0 0 24 24',
|
|
13
|
+
fill: 'currentColor'
|
|
14
|
+
) do |s|
|
|
15
|
+
s.path(d: 'M8 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1')
|
|
16
|
+
s.path(d: 'M12 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1')
|
|
17
|
+
s.path(d: 'M16 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1')
|
|
18
|
+
s.path(
|
|
19
|
+
d:
|
|
20
|
+
'M16 2a1 1 0 0 1 .993 .883l.007 .117v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z'
|
|
21
|
+
)
|
|
22
|
+
end
|
|
9
23
|
end
|
|
10
24
|
|
|
11
25
|
def outline
|
|
@@ -35,3 +49,4 @@ module Phlex
|
|
|
35
49
|
end
|
|
36
50
|
end
|
|
37
51
|
end
|
|
52
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -14,11 +14,11 @@ module Phlex
|
|
|
14
14
|
) do |s|
|
|
15
15
|
s.path(
|
|
16
16
|
d:
|
|
17
|
-
'M14
|
|
17
|
+
'M14 9a2 2 0 0 1 2 2v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10a2 2 0 0 1 2 -2z'
|
|
18
18
|
)
|
|
19
19
|
s.path(
|
|
20
20
|
d:
|
|
21
|
-
'M11.254
|
|
21
|
+
'M11.254 1.334a1 1 0 0 1 1.491 0l1.452 1.623a3 3 0 0 1 -4.196 4.28c-1.195 -1.07 -1.339 -2.889 -.297 -4.166z'
|
|
22
22
|
)
|
|
23
23
|
end
|
|
24
24
|
end
|
|
@@ -34,8 +34,8 @@ module Phlex
|
|
|
34
34
|
stroke_linecap: 'round',
|
|
35
35
|
stroke_linejoin: 'round'
|
|
36
36
|
) do |s|
|
|
37
|
-
s.path(d: 'M9 21h6v-
|
|
38
|
-
s.path(d: 'M12
|
|
37
|
+
s.path(d: 'M9 21h6v-10a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1z')
|
|
38
|
+
s.path(d: 'M12 2l1.465 1.638a2 2 0 1 1 -3.015 .099z')
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class CodeVariable < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z'
|
|
25
|
+
)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class CodeVariableMinus < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(
|
|
23
|
+
d: 'M12.5 16h-6.5a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4'
|
|
24
|
+
)
|
|
25
|
+
s.path(d: 'M16 18h6')
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class CodeVariablePlus < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(d: 'M13 16h-7a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v1')
|
|
23
|
+
s.path(d: 'M16 18h6')
|
|
24
|
+
s.path(d: 'M19 15v6')
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Phlex
|
|
4
|
+
module Icons
|
|
5
|
+
module Tabler
|
|
6
|
+
class Uhd < Base
|
|
7
|
+
def filled
|
|
8
|
+
raise NotImplementedError
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def outline
|
|
12
|
+
svg(
|
|
13
|
+
**attrs,
|
|
14
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
15
|
+
viewbox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
stroke: 'currentColor',
|
|
18
|
+
stroke_width: '2',
|
|
19
|
+
stroke_linecap: 'round',
|
|
20
|
+
stroke_linejoin: 'round'
|
|
21
|
+
) do |s|
|
|
22
|
+
s.path(d: 'M10 16v-8')
|
|
23
|
+
s.path(d: 'M10 12h4')
|
|
24
|
+
s.path(d: 'M14 8v8')
|
|
25
|
+
s.path(d: 'M17 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z')
|
|
26
|
+
s.path(d: 'M3 8v6a2 2 0 1 0 4 0v-6')
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module Phlex
|
|
5
|
+
module Icons
|
|
6
|
+
module Tabler
|
|
7
|
+
class Wheat < Base
|
|
8
|
+
def filled
|
|
9
|
+
raise NotImplementedError
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def outline
|
|
13
|
+
svg(
|
|
14
|
+
**attrs,
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
viewbox: '0 0 24 24',
|
|
17
|
+
fill: 'none',
|
|
18
|
+
stroke: 'currentColor',
|
|
19
|
+
stroke_width: '2',
|
|
20
|
+
stroke_linecap: 'round',
|
|
21
|
+
stroke_linejoin: 'round'
|
|
22
|
+
) do |s|
|
|
23
|
+
s.path(d: 'M12.014 21.514v-3.75')
|
|
24
|
+
s.path(
|
|
25
|
+
d:
|
|
26
|
+
'M5.93 9.504l-.43 1.604c-.712 2.659 .866 5.391 3.524 6.105c.997 .268 1.993 .535 2.99 .801v-3.44c-.164 -2.105 -1.637 -3.879 -3.676 -4.426l-2.408 -.644z'
|
|
27
|
+
)
|
|
28
|
+
s.path(
|
|
29
|
+
d:
|
|
30
|
+
'M13.744 11.164c.454 -.454 .815 -.994 1.061 -1.587c.246 -.594 .372 -1.23 .372 -1.873c0 -.643 -.126 -1.279 -.372 -1.872c-.246 -.594 -.606 -1.133 -1.061 -1.588l-1.73 -1.73l-1.73 1.73c-.454 .454 -.815 .994 -1.06 1.588c-.246 .594 -.372 1.23 -.373 1.872c0 .643 .127 1.279 .373 1.873c.246 .594 .606 1.133 1.06 1.587'
|
|
31
|
+
)
|
|
32
|
+
s.path(
|
|
33
|
+
d:
|
|
34
|
+
'M18.099 9.504l.43 1.604c.712 2.659 -.866 5.391 -3.525 6.105c-.997 .268 -1.994 .535 -2.99 .801v-3.44c.164 -2.105 1.637 -3.879 3.677 -4.426l2.408 -.644z'
|
|
35
|
+
)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module Phlex
|
|
5
|
+
module Icons
|
|
6
|
+
module Tabler
|
|
7
|
+
class WheatOff < Base
|
|
8
|
+
def filled
|
|
9
|
+
raise NotImplementedError
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def outline
|
|
13
|
+
svg(
|
|
14
|
+
**attrs,
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
viewbox: '0 0 24 24',
|
|
17
|
+
fill: 'none',
|
|
18
|
+
stroke: 'currentColor',
|
|
19
|
+
stroke_width: '2',
|
|
20
|
+
stroke_linecap: 'round',
|
|
21
|
+
stroke_linejoin: 'round'
|
|
22
|
+
) do |s|
|
|
23
|
+
s.path(d: 'M3 3l18 18')
|
|
24
|
+
s.path(d: 'M12 21.5v-3.75')
|
|
25
|
+
s.path(
|
|
26
|
+
d:
|
|
27
|
+
'M5.916 9.49l-.43 1.604c-.712 2.659 .866 5.392 3.524 6.104c.997 .268 1.994 .535 2.99 .802v-3.44c-.164 -2.105 -1.637 -3.879 -3.677 -4.426l-2.407 -.644z'
|
|
28
|
+
)
|
|
29
|
+
s.path(d: 'M10.249 4.251c.007 -.007 .014 -.014 .021 -.021l1.73 -1.73')
|
|
30
|
+
s.path(d: 'M10.27 11.15c-.589 -.589 -1.017 -1.318 -1.246 -2.118')
|
|
31
|
+
s.path(
|
|
32
|
+
d:
|
|
33
|
+
'M14.988 8.988c.229 -.834 .234 -1.713 .013 -2.549c-.221 -.836 -.659 -1.598 -1.271 -2.209l-1.73 -1.73'
|
|
34
|
+
)
|
|
35
|
+
s.path(
|
|
36
|
+
d: 'M16.038 10.037l2.046 -.547l.431 1.604c.142 .53 .193 1.063 .162 1.583'
|
|
37
|
+
)
|
|
38
|
+
s.path(
|
|
39
|
+
d:
|
|
40
|
+
'M16.506 16.505c-.45 .307 -.959 .544 -1.516 .694c-.997 .268 -1.994 .535 -2.99 .801v-3.44c.055 -.708 .259 -1.379 .582 -1.978'
|
|
41
|
+
)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
# rubocop:enable Layout/LineLength
|
data/lib/phlex/icons/tabler.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Phlex
|
|
4
4
|
module Icons
|
|
5
5
|
module Tabler # rubocop:disable Metrics/ModuleLength
|
|
6
|
-
VERSION = '3.
|
|
6
|
+
VERSION = '3.23.0'
|
|
7
7
|
VARIANTS = %i[outline filled].freeze
|
|
8
8
|
|
|
9
9
|
extend Phlex::Kit
|
|
@@ -67,6 +67,7 @@ module Phlex
|
|
|
67
67
|
autoload :AlarmMinus, 'phlex/icons/tabler/alarm_minus'
|
|
68
68
|
autoload :AlarmOff, 'phlex/icons/tabler/alarm_off'
|
|
69
69
|
autoload :AlarmPlus, 'phlex/icons/tabler/alarm_plus'
|
|
70
|
+
autoload :AlarmSmoke, 'phlex/icons/tabler/alarm_smoke'
|
|
70
71
|
autoload :AlarmSnooze, 'phlex/icons/tabler/alarm_snooze'
|
|
71
72
|
autoload :Album, 'phlex/icons/tabler/album'
|
|
72
73
|
autoload :AlbumOff, 'phlex/icons/tabler/album_off'
|
|
@@ -369,8 +370,11 @@ module Phlex
|
|
|
369
370
|
autoload :Backslash, 'phlex/icons/tabler/backslash'
|
|
370
371
|
autoload :Backspace, 'phlex/icons/tabler/backspace'
|
|
371
372
|
autoload :Badge, 'phlex/icons/tabler/badge'
|
|
373
|
+
autoload :Badge2k, 'phlex/icons/tabler/badge_2k'
|
|
372
374
|
autoload :Badge3d, 'phlex/icons/tabler/badge_3d'
|
|
375
|
+
autoload :Badge3k, 'phlex/icons/tabler/badge_3k'
|
|
373
376
|
autoload :Badge4k, 'phlex/icons/tabler/badge_4k'
|
|
377
|
+
autoload :Badge5k, 'phlex/icons/tabler/badge_5k'
|
|
374
378
|
autoload :Badge8k, 'phlex/icons/tabler/badge_8k'
|
|
375
379
|
autoload :BadgeAd, 'phlex/icons/tabler/badge_ad'
|
|
376
380
|
autoload :BadgeAdOff, 'phlex/icons/tabler/badge_ad_off'
|
|
@@ -513,6 +517,7 @@ module Phlex
|
|
|
513
517
|
autoload :Blender, 'phlex/icons/tabler/blender'
|
|
514
518
|
autoload :Blob, 'phlex/icons/tabler/blob'
|
|
515
519
|
autoload :Blockquote, 'phlex/icons/tabler/blockquote'
|
|
520
|
+
autoload :Blocks, 'phlex/icons/tabler/blocks'
|
|
516
521
|
autoload :Bluetooth, 'phlex/icons/tabler/bluetooth'
|
|
517
522
|
autoload :BluetoothConnected, 'phlex/icons/tabler/bluetooth_connected'
|
|
518
523
|
autoload :BluetoothOff, 'phlex/icons/tabler/bluetooth_off'
|
|
@@ -578,6 +583,7 @@ module Phlex
|
|
|
578
583
|
autoload :Bowl, 'phlex/icons/tabler/bowl'
|
|
579
584
|
autoload :BowlChopsticks, 'phlex/icons/tabler/bowl_chopsticks'
|
|
580
585
|
autoload :BowlSpoon, 'phlex/icons/tabler/bowl_spoon'
|
|
586
|
+
autoload :Bowling, 'phlex/icons/tabler/bowling'
|
|
581
587
|
autoload :Box, 'phlex/icons/tabler/box'
|
|
582
588
|
autoload :BoxAlignBottom, 'phlex/icons/tabler/box_align_bottom'
|
|
583
589
|
autoload :BoxAlignBottomLeft, 'phlex/icons/tabler/box_align_bottom_left'
|
|
@@ -1000,8 +1006,11 @@ module Phlex
|
|
|
1000
1006
|
autoload :BroadcastOff, 'phlex/icons/tabler/broadcast_off'
|
|
1001
1007
|
autoload :Browser, 'phlex/icons/tabler/browser'
|
|
1002
1008
|
autoload :BrowserCheck, 'phlex/icons/tabler/browser_check'
|
|
1009
|
+
autoload :BrowserMaximize, 'phlex/icons/tabler/browser_maximize'
|
|
1010
|
+
autoload :BrowserMinus, 'phlex/icons/tabler/browser_minus'
|
|
1003
1011
|
autoload :BrowserOff, 'phlex/icons/tabler/browser_off'
|
|
1004
1012
|
autoload :BrowserPlus, 'phlex/icons/tabler/browser_plus'
|
|
1013
|
+
autoload :BrowserShare, 'phlex/icons/tabler/browser_share'
|
|
1005
1014
|
autoload :BrowserX, 'phlex/icons/tabler/browser_x'
|
|
1006
1015
|
autoload :Brush, 'phlex/icons/tabler/brush'
|
|
1007
1016
|
autoload :BrushOff, 'phlex/icons/tabler/brush_off'
|
|
@@ -1546,6 +1555,9 @@ module Phlex
|
|
|
1546
1555
|
autoload :CodeMinus, 'phlex/icons/tabler/code_minus'
|
|
1547
1556
|
autoload :CodeOff, 'phlex/icons/tabler/code_off'
|
|
1548
1557
|
autoload :CodePlus, 'phlex/icons/tabler/code_plus'
|
|
1558
|
+
autoload :CodeVariable, 'phlex/icons/tabler/code_variable'
|
|
1559
|
+
autoload :CodeVariableMinus, 'phlex/icons/tabler/code_variable_minus'
|
|
1560
|
+
autoload :CodeVariablePlus, 'phlex/icons/tabler/code_variable_plus'
|
|
1549
1561
|
autoload :Coffee, 'phlex/icons/tabler/coffee'
|
|
1550
1562
|
autoload :CoffeeOff, 'phlex/icons/tabler/coffee_off'
|
|
1551
1563
|
autoload :Coffin, 'phlex/icons/tabler/coffin'
|
|
@@ -4658,6 +4670,7 @@ module Phlex
|
|
|
4658
4670
|
autoload :UTurnRight, 'phlex/icons/tabler/u_turn_right'
|
|
4659
4671
|
autoload :Ufo, 'phlex/icons/tabler/ufo'
|
|
4660
4672
|
autoload :UfoOff, 'phlex/icons/tabler/ufo_off'
|
|
4673
|
+
autoload :Uhd, 'phlex/icons/tabler/uhd'
|
|
4661
4674
|
autoload :Umbrella, 'phlex/icons/tabler/umbrella'
|
|
4662
4675
|
autoload :Umbrella2, 'phlex/icons/tabler/umbrella_2'
|
|
4663
4676
|
autoload :UmbrellaClosed, 'phlex/icons/tabler/umbrella_closed'
|
|
@@ -4802,6 +4815,8 @@ module Phlex
|
|
|
4802
4815
|
autoload :Webhook, 'phlex/icons/tabler/webhook'
|
|
4803
4816
|
autoload :WebhookOff, 'phlex/icons/tabler/webhook_off'
|
|
4804
4817
|
autoload :Weight, 'phlex/icons/tabler/weight'
|
|
4818
|
+
autoload :Wheat, 'phlex/icons/tabler/wheat'
|
|
4819
|
+
autoload :WheatOff, 'phlex/icons/tabler/wheat_off'
|
|
4805
4820
|
autoload :Wheel, 'phlex/icons/tabler/wheel'
|
|
4806
4821
|
autoload :Wheelchair, 'phlex/icons/tabler/wheelchair'
|
|
4807
4822
|
autoload :WheelchairOff, 'phlex/icons/tabler/wheelchair_off'
|
data/lib/phlex/icons/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phlex-icons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-11-
|
|
11
|
+
date: 2024-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: phlex
|
|
@@ -2962,6 +2962,7 @@ files:
|
|
|
2962
2962
|
- lib/phlex/icons/lucide/calendar_plus_2.rb
|
|
2963
2963
|
- lib/phlex/icons/lucide/calendar_range.rb
|
|
2964
2964
|
- lib/phlex/icons/lucide/calendar_search.rb
|
|
2965
|
+
- lib/phlex/icons/lucide/calendar_sync.rb
|
|
2965
2966
|
- lib/phlex/icons/lucide/calendar_x.rb
|
|
2966
2967
|
- lib/phlex/icons/lucide/calendar_x_2.rb
|
|
2967
2968
|
- lib/phlex/icons/lucide/camera.rb
|
|
@@ -3474,6 +3475,7 @@ files:
|
|
|
3474
3475
|
- lib/phlex/icons/lucide/image_play.rb
|
|
3475
3476
|
- lib/phlex/icons/lucide/image_plus.rb
|
|
3476
3477
|
- lib/phlex/icons/lucide/image_up.rb
|
|
3478
|
+
- lib/phlex/icons/lucide/image_upscale.rb
|
|
3477
3479
|
- lib/phlex/icons/lucide/images.rb
|
|
3478
3480
|
- lib/phlex/icons/lucide/import.rb
|
|
3479
3481
|
- lib/phlex/icons/lucide/inbox.rb
|
|
@@ -7643,6 +7645,7 @@ files:
|
|
|
7643
7645
|
- lib/phlex/icons/tabler/alarm_minus.rb
|
|
7644
7646
|
- lib/phlex/icons/tabler/alarm_off.rb
|
|
7645
7647
|
- lib/phlex/icons/tabler/alarm_plus.rb
|
|
7648
|
+
- lib/phlex/icons/tabler/alarm_smoke.rb
|
|
7646
7649
|
- lib/phlex/icons/tabler/alarm_snooze.rb
|
|
7647
7650
|
- lib/phlex/icons/tabler/album.rb
|
|
7648
7651
|
- lib/phlex/icons/tabler/album_off.rb
|
|
@@ -7945,8 +7948,11 @@ files:
|
|
|
7945
7948
|
- lib/phlex/icons/tabler/backslash.rb
|
|
7946
7949
|
- lib/phlex/icons/tabler/backspace.rb
|
|
7947
7950
|
- lib/phlex/icons/tabler/badge.rb
|
|
7951
|
+
- lib/phlex/icons/tabler/badge_2k.rb
|
|
7948
7952
|
- lib/phlex/icons/tabler/badge_3d.rb
|
|
7953
|
+
- lib/phlex/icons/tabler/badge_3k.rb
|
|
7949
7954
|
- lib/phlex/icons/tabler/badge_4k.rb
|
|
7955
|
+
- lib/phlex/icons/tabler/badge_5k.rb
|
|
7950
7956
|
- lib/phlex/icons/tabler/badge_8k.rb
|
|
7951
7957
|
- lib/phlex/icons/tabler/badge_ad.rb
|
|
7952
7958
|
- lib/phlex/icons/tabler/badge_ad_off.rb
|
|
@@ -8090,6 +8096,7 @@ files:
|
|
|
8090
8096
|
- lib/phlex/icons/tabler/blender.rb
|
|
8091
8097
|
- lib/phlex/icons/tabler/blob.rb
|
|
8092
8098
|
- lib/phlex/icons/tabler/blockquote.rb
|
|
8099
|
+
- lib/phlex/icons/tabler/blocks.rb
|
|
8093
8100
|
- lib/phlex/icons/tabler/bluetooth.rb
|
|
8094
8101
|
- lib/phlex/icons/tabler/bluetooth_connected.rb
|
|
8095
8102
|
- lib/phlex/icons/tabler/bluetooth_off.rb
|
|
@@ -8155,6 +8162,7 @@ files:
|
|
|
8155
8162
|
- lib/phlex/icons/tabler/bowl.rb
|
|
8156
8163
|
- lib/phlex/icons/tabler/bowl_chopsticks.rb
|
|
8157
8164
|
- lib/phlex/icons/tabler/bowl_spoon.rb
|
|
8165
|
+
- lib/phlex/icons/tabler/bowling.rb
|
|
8158
8166
|
- lib/phlex/icons/tabler/box.rb
|
|
8159
8167
|
- lib/phlex/icons/tabler/box_align_bottom.rb
|
|
8160
8168
|
- lib/phlex/icons/tabler/box_align_bottom_left.rb
|
|
@@ -8577,8 +8585,11 @@ files:
|
|
|
8577
8585
|
- lib/phlex/icons/tabler/broadcast_off.rb
|
|
8578
8586
|
- lib/phlex/icons/tabler/browser.rb
|
|
8579
8587
|
- lib/phlex/icons/tabler/browser_check.rb
|
|
8588
|
+
- lib/phlex/icons/tabler/browser_maximize.rb
|
|
8589
|
+
- lib/phlex/icons/tabler/browser_minus.rb
|
|
8580
8590
|
- lib/phlex/icons/tabler/browser_off.rb
|
|
8581
8591
|
- lib/phlex/icons/tabler/browser_plus.rb
|
|
8592
|
+
- lib/phlex/icons/tabler/browser_share.rb
|
|
8582
8593
|
- lib/phlex/icons/tabler/browser_x.rb
|
|
8583
8594
|
- lib/phlex/icons/tabler/brush.rb
|
|
8584
8595
|
- lib/phlex/icons/tabler/brush_off.rb
|
|
@@ -9123,6 +9134,9 @@ files:
|
|
|
9123
9134
|
- lib/phlex/icons/tabler/code_minus.rb
|
|
9124
9135
|
- lib/phlex/icons/tabler/code_off.rb
|
|
9125
9136
|
- lib/phlex/icons/tabler/code_plus.rb
|
|
9137
|
+
- lib/phlex/icons/tabler/code_variable.rb
|
|
9138
|
+
- lib/phlex/icons/tabler/code_variable_minus.rb
|
|
9139
|
+
- lib/phlex/icons/tabler/code_variable_plus.rb
|
|
9126
9140
|
- lib/phlex/icons/tabler/coffee.rb
|
|
9127
9141
|
- lib/phlex/icons/tabler/coffee_off.rb
|
|
9128
9142
|
- lib/phlex/icons/tabler/coffin.rb
|
|
@@ -12236,6 +12250,7 @@ files:
|
|
|
12236
12250
|
- lib/phlex/icons/tabler/u_turn_right.rb
|
|
12237
12251
|
- lib/phlex/icons/tabler/ufo.rb
|
|
12238
12252
|
- lib/phlex/icons/tabler/ufo_off.rb
|
|
12253
|
+
- lib/phlex/icons/tabler/uhd.rb
|
|
12239
12254
|
- lib/phlex/icons/tabler/umbrella.rb
|
|
12240
12255
|
- lib/phlex/icons/tabler/umbrella_2.rb
|
|
12241
12256
|
- lib/phlex/icons/tabler/umbrella_closed.rb
|
|
@@ -12380,6 +12395,8 @@ files:
|
|
|
12380
12395
|
- lib/phlex/icons/tabler/webhook.rb
|
|
12381
12396
|
- lib/phlex/icons/tabler/webhook_off.rb
|
|
12382
12397
|
- lib/phlex/icons/tabler/weight.rb
|
|
12398
|
+
- lib/phlex/icons/tabler/wheat.rb
|
|
12399
|
+
- lib/phlex/icons/tabler/wheat_off.rb
|
|
12383
12400
|
- lib/phlex/icons/tabler/wheel.rb
|
|
12384
12401
|
- lib/phlex/icons/tabler/wheelchair.rb
|
|
12385
12402
|
- lib/phlex/icons/tabler/wheelchair_off.rb
|