phlex-icons-lucide 1.0.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/phlex/icons/lucide/align_center.rb +3 -3
- data/lib/phlex/icons/lucide/align_justify.rb +3 -3
- data/lib/phlex/icons/lucide/align_left.rb +3 -3
- data/lib/phlex/icons/lucide/align_right.rb +3 -3
- data/lib/phlex/icons/lucide/calendar_1.rb +28 -0
- data/lib/phlex/icons/lucide/component.rb +18 -4
- data/lib/phlex/icons/lucide/eye_closed.rb +28 -0
- data/lib/phlex/icons/lucide/indent_decrease.rb +4 -4
- data/lib/phlex/icons/lucide/indent_increase.rb +4 -4
- data/lib/phlex/icons/lucide/list.rb +6 -6
- data/lib/phlex/icons/lucide/list_ordered.rb +4 -4
- data/lib/phlex/icons/lucide/move.rb +6 -6
- data/lib/phlex/icons/lucide/move_diagonal.rb +3 -3
- data/lib/phlex/icons/lucide/move_diagonal_2.rb +3 -3
- data/lib/phlex/icons/lucide/move_horizontal.rb +3 -3
- data/lib/phlex/icons/lucide/move_vertical.rb +3 -3
- data/lib/phlex/icons/lucide/package.rb +3 -3
- data/lib/phlex/icons/lucide/parking_meter.rb +4 -4
- data/lib/phlex/icons/lucide/sandwich.rb +5 -7
- data/lib/phlex/icons/lucide/{box_select.rb → square_dashed.rb} +1 -1
- data/lib/phlex/icons/lucide/volleyball.rb +29 -0
- data/lib/phlex/icons/lucide.rb +6 -2
- data/lib/phlex/icons/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a2ea5dbe4003b7bcb3c8d9be533ca916fe532f1f07814f92b436c2ea5fdcf62
|
4
|
+
data.tar.gz: e1cdd5f6929e08e9bcd3354b3c813761a982f9e03f4c849cb78ef4f7214faede
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c961db150f7804e14c3c2e47bce0afd54959ca02ddc88f60e43c00bf05eed2da13349f450fbe96a61251dc25cc8f2f1f9b16197ac5c2b3ce9caa8e7695c3cd7
|
7
|
+
data.tar.gz: 2816e21cdbfe33115e12e314fdc100a580c2064348d34ee169d933c8df68bc986b383f7237f07045a6a3c714e29b63ec3804488634f6b72db19ebd1a54e08bb6
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'M17 12H7')
|
19
|
+
s.path(d: 'M19 18H5')
|
20
|
+
s.path(d: 'M21 6H3')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'M3 12h18')
|
19
|
+
s.path(d: 'M3 18h18')
|
20
|
+
s.path(d: 'M3 6h18')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'M15 12H3')
|
19
|
+
s.path(d: 'M17 18H3')
|
20
|
+
s.path(d: 'M21 6H3')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'M21 12H9')
|
19
|
+
s.path(d: 'M21 18H7')
|
20
|
+
s.path(d: 'M21 6H3')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class Calendar1 < 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 14h1v4')
|
19
|
+
s.path(d: 'M16 2v4')
|
20
|
+
s.path(d: 'M3 10h18')
|
21
|
+
s.path(d: 'M8 2v4')
|
22
|
+
s.rect(x: '3', y: '4', width: '18', height: '18', rx: '2')
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
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,13 +16,26 @@ module Phlex
|
|
15
16
|
stroke_linecap: 'round',
|
16
17
|
stroke_linejoin: 'round'
|
17
18
|
) do |s|
|
18
|
-
s.path(
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z'
|
22
|
+
)
|
23
|
+
s.path(
|
24
|
+
d:
|
25
|
+
'M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z'
|
26
|
+
)
|
27
|
+
s.path(
|
28
|
+
d:
|
29
|
+
'M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z'
|
30
|
+
)
|
31
|
+
s.path(
|
32
|
+
d:
|
33
|
+
'M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z'
|
34
|
+
)
|
22
35
|
end
|
23
36
|
end
|
24
37
|
end
|
25
38
|
end
|
26
39
|
end
|
27
40
|
end
|
41
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class EyeClosed < 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: 'm15 18-.722-3.25')
|
19
|
+
s.path(d: 'M2 8a10.645 10.645 0 0 0 20 0')
|
20
|
+
s.path(d: 'm20 15-1.726-2.05')
|
21
|
+
s.path(d: 'm4 15 1.726-2.05')
|
22
|
+
s.path(d: 'm9 18 .722-3.25')
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -15,10 +15,10 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
21
|
-
s.
|
18
|
+
s.path(d: 'M21 12H11')
|
19
|
+
s.path(d: 'M21 18H11')
|
20
|
+
s.path(d: 'M21 6H11')
|
21
|
+
s.path(d: 'm7 8-4 4 4 4')
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -15,10 +15,10 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
21
|
-
s.
|
18
|
+
s.path(d: 'M21 12H11')
|
19
|
+
s.path(d: 'M21 18H11')
|
20
|
+
s.path(d: 'M21 6H11')
|
21
|
+
s.path(d: 'm3 8 4 4-4 4')
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -15,12 +15,12 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
21
|
-
s.
|
22
|
-
s.
|
23
|
-
s.
|
18
|
+
s.path(d: 'M3 12h.01')
|
19
|
+
s.path(d: 'M3 18h.01')
|
20
|
+
s.path(d: 'M3 6h.01')
|
21
|
+
s.path(d: 'M8 12h13')
|
22
|
+
s.path(d: 'M8 18h13')
|
23
|
+
s.path(d: 'M8 6h13')
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
@@ -15,11 +15,11 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
21
|
-
s.path(d: 'M4 6h1v4')
|
18
|
+
s.path(d: 'M10 12h11')
|
19
|
+
s.path(d: 'M10 18h11')
|
20
|
+
s.path(d: 'M10 6h11')
|
22
21
|
s.path(d: 'M4 10h2')
|
22
|
+
s.path(d: 'M4 6h1v4')
|
23
23
|
s.path(d: 'M6 18H4c0-1 2-2 2-3s-1-1.5-2-1')
|
24
24
|
end
|
25
25
|
end
|
@@ -15,12 +15,12 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
21
|
-
s.
|
22
|
-
s.
|
23
|
-
s.
|
18
|
+
s.path(d: 'M12 2v20')
|
19
|
+
s.path(d: 'm15 19-3 3-3-3')
|
20
|
+
s.path(d: 'm19 9 3 3-3 3')
|
21
|
+
s.path(d: 'M2 12h20')
|
22
|
+
s.path(d: 'm5 9-3 3 3 3')
|
23
|
+
s.path(d: 'm9 5 3-3 3 3')
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'M11 19H5v-6')
|
19
|
+
s.path(d: 'M13 5h6v6')
|
20
|
+
s.path(d: 'M19 5 5 19')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'M19 13v6h-6')
|
19
|
+
s.path(d: 'M5 11V5h6')
|
20
|
+
s.path(d: 'm5 5 14 14')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'm18 8 4 4-4 4')
|
19
|
+
s.path(d: 'M2 12h20')
|
20
|
+
s.path(d: 'm6 8-4 4 4 4')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
18
|
+
s.path(d: 'M12 2v20')
|
19
|
+
s.path(d: 'm8 18 4 4 4-4')
|
20
|
+
s.path(d: 'm8 6 4-4 4 4')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -16,13 +16,13 @@ module Phlex
|
|
16
16
|
stroke_linecap: 'round',
|
17
17
|
stroke_linejoin: 'round'
|
18
18
|
) do |s|
|
19
|
-
s.path(d: 'm7.5 4.27 9 5.15')
|
20
19
|
s.path(
|
21
20
|
d:
|
22
|
-
'
|
21
|
+
'M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z'
|
23
22
|
)
|
24
|
-
s.path(d: 'm3.3 7 8.7 5 8.7-5')
|
25
23
|
s.path(d: 'M12 22V12')
|
24
|
+
s.path(d: 'm3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7')
|
25
|
+
s.path(d: 'm7.5 4.27 9 5.15')
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -15,14 +15,14 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.path(d: 'M9 9a3 3 0 1 1 6 0')
|
19
|
-
s.path(d: 'M12 12v3')
|
20
18
|
s.path(d: 'M11 15h2')
|
19
|
+
s.path(d: 'M12 12v3')
|
20
|
+
s.path(d: 'M12 19v3')
|
21
21
|
s.path(
|
22
22
|
d:
|
23
|
-
'
|
23
|
+
'M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z'
|
24
24
|
)
|
25
|
-
s.path(d: '
|
25
|
+
s.path(d: 'M9 9a3 3 0 1 1 6 0')
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -15,13 +15,11 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.path(d: '
|
19
|
-
s.path(
|
20
|
-
|
21
|
-
|
22
|
-
)
|
23
|
-
s.path(d: 'm3 11 7.77-6.04a2 2 0 0 1 2.46 0L21 11H3Z')
|
24
|
-
s.path(d: 'M12.97 19.77 7 15h12.5l-3.75 4.5a2 2 0 0 1-2.78.27Z')
|
18
|
+
s.path(d: 'm2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777')
|
19
|
+
s.path(d: 'M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25')
|
20
|
+
s.path(d: 'M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9')
|
21
|
+
s.path(d: 'm6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2')
|
22
|
+
s.rect(width: '20', height: '4', x: '2', y: '11', rx: '1')
|
25
23
|
end
|
26
24
|
end
|
27
25
|
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class Volleyball < 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.1 7.1a16.55 16.55 0 0 1 10.9 4')
|
19
|
+
s.path(d: 'M12 12a12.6 12.6 0 0 1-8.7 5')
|
20
|
+
s.path(d: 'M16.8 13.6a16.55 16.55 0 0 1-9 7.5')
|
21
|
+
s.path(d: 'M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10')
|
22
|
+
s.path(d: 'M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5')
|
23
|
+
s.circle(cx: '12', cy: '12', r: '10')
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/phlex/icons/lucide.rb
CHANGED
@@ -3,7 +3,8 @@
|
|
3
3
|
module Phlex
|
4
4
|
module Icons
|
5
5
|
module Lucide # rubocop:disable Metrics/ModuleLength
|
6
|
-
VERSION = '0.
|
6
|
+
VERSION = '0.453.0'
|
7
|
+
VARIANTS = nil
|
7
8
|
|
8
9
|
extend Phlex::Kit
|
9
10
|
|
@@ -223,7 +224,6 @@ module Phlex
|
|
223
224
|
autoload :BotMessageSquare, 'phlex/icons/lucide/bot_message_square'
|
224
225
|
autoload :BotOff, 'phlex/icons/lucide/bot_off'
|
225
226
|
autoload :Box, 'phlex/icons/lucide/box'
|
226
|
-
autoload :BoxSelect, 'phlex/icons/lucide/box_select'
|
227
227
|
autoload :Boxes, 'phlex/icons/lucide/boxes'
|
228
228
|
autoload :Braces, 'phlex/icons/lucide/braces'
|
229
229
|
autoload :Brackets, 'phlex/icons/lucide/brackets'
|
@@ -250,6 +250,7 @@ module Phlex
|
|
250
250
|
autoload :CakeSlice, 'phlex/icons/lucide/cake_slice'
|
251
251
|
autoload :Calculator, 'phlex/icons/lucide/calculator'
|
252
252
|
autoload :Calendar, 'phlex/icons/lucide/calendar'
|
253
|
+
autoload :Calendar1, 'phlex/icons/lucide/calendar_1'
|
253
254
|
autoload :CalendarArrowDown, 'phlex/icons/lucide/calendar_arrow_down'
|
254
255
|
autoload :CalendarArrowUp, 'phlex/icons/lucide/calendar_arrow_up'
|
255
256
|
autoload :CalendarCheck, 'phlex/icons/lucide/calendar_check'
|
@@ -539,6 +540,7 @@ module Phlex
|
|
539
540
|
autoload :Expand, 'phlex/icons/lucide/expand'
|
540
541
|
autoload :ExternalLink, 'phlex/icons/lucide/external_link'
|
541
542
|
autoload :Eye, 'phlex/icons/lucide/eye'
|
543
|
+
autoload :EyeClosed, 'phlex/icons/lucide/eye_closed'
|
542
544
|
autoload :EyeOff, 'phlex/icons/lucide/eye_off'
|
543
545
|
autoload :Facebook, 'phlex/icons/lucide/facebook'
|
544
546
|
autoload :Factory, 'phlex/icons/lucide/factory'
|
@@ -1299,6 +1301,7 @@ module Phlex
|
|
1299
1301
|
autoload :SquareChevronRight, 'phlex/icons/lucide/square_chevron_right'
|
1300
1302
|
autoload :SquareChevronUp, 'phlex/icons/lucide/square_chevron_up'
|
1301
1303
|
autoload :SquareCode, 'phlex/icons/lucide/square_code'
|
1304
|
+
autoload :SquareDashed, 'phlex/icons/lucide/square_dashed'
|
1302
1305
|
autoload :SquareDashedBottom, 'phlex/icons/lucide/square_dashed_bottom'
|
1303
1306
|
autoload :SquareDashedBottomCode, 'phlex/icons/lucide/square_dashed_bottom_code'
|
1304
1307
|
autoload :SquareDashedKanban, 'phlex/icons/lucide/square_dashed_kanban'
|
@@ -1499,6 +1502,7 @@ module Phlex
|
|
1499
1502
|
autoload :Videotape, 'phlex/icons/lucide/videotape'
|
1500
1503
|
autoload :View, 'phlex/icons/lucide/view'
|
1501
1504
|
autoload :Voicemail, 'phlex/icons/lucide/voicemail'
|
1505
|
+
autoload :Volleyball, 'phlex/icons/lucide/volleyball'
|
1502
1506
|
autoload :Volume, 'phlex/icons/lucide/volume'
|
1503
1507
|
autoload :Volume1, 'phlex/icons/lucide/volume_1'
|
1504
1508
|
autoload :Volume2, 'phlex/icons/lucide/volume_2'
|
data/lib/phlex/icons/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phlex-icons-lucide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.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
|
+
date: 2024-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -267,7 +267,6 @@ files:
|
|
267
267
|
- lib/phlex/icons/lucide/bot_message_square.rb
|
268
268
|
- lib/phlex/icons/lucide/bot_off.rb
|
269
269
|
- lib/phlex/icons/lucide/box.rb
|
270
|
-
- lib/phlex/icons/lucide/box_select.rb
|
271
270
|
- lib/phlex/icons/lucide/boxes.rb
|
272
271
|
- lib/phlex/icons/lucide/braces.rb
|
273
272
|
- lib/phlex/icons/lucide/brackets.rb
|
@@ -294,6 +293,7 @@ files:
|
|
294
293
|
- lib/phlex/icons/lucide/cake_slice.rb
|
295
294
|
- lib/phlex/icons/lucide/calculator.rb
|
296
295
|
- lib/phlex/icons/lucide/calendar.rb
|
296
|
+
- lib/phlex/icons/lucide/calendar_1.rb
|
297
297
|
- lib/phlex/icons/lucide/calendar_arrow_down.rb
|
298
298
|
- lib/phlex/icons/lucide/calendar_arrow_up.rb
|
299
299
|
- lib/phlex/icons/lucide/calendar_check.rb
|
@@ -583,6 +583,7 @@ files:
|
|
583
583
|
- lib/phlex/icons/lucide/expand.rb
|
584
584
|
- lib/phlex/icons/lucide/external_link.rb
|
585
585
|
- lib/phlex/icons/lucide/eye.rb
|
586
|
+
- lib/phlex/icons/lucide/eye_closed.rb
|
586
587
|
- lib/phlex/icons/lucide/eye_off.rb
|
587
588
|
- lib/phlex/icons/lucide/facebook.rb
|
588
589
|
- lib/phlex/icons/lucide/factory.rb
|
@@ -1343,6 +1344,7 @@ files:
|
|
1343
1344
|
- lib/phlex/icons/lucide/square_chevron_right.rb
|
1344
1345
|
- lib/phlex/icons/lucide/square_chevron_up.rb
|
1345
1346
|
- lib/phlex/icons/lucide/square_code.rb
|
1347
|
+
- lib/phlex/icons/lucide/square_dashed.rb
|
1346
1348
|
- lib/phlex/icons/lucide/square_dashed_bottom.rb
|
1347
1349
|
- lib/phlex/icons/lucide/square_dashed_bottom_code.rb
|
1348
1350
|
- lib/phlex/icons/lucide/square_dashed_kanban.rb
|
@@ -1543,6 +1545,7 @@ files:
|
|
1543
1545
|
- lib/phlex/icons/lucide/videotape.rb
|
1544
1546
|
- lib/phlex/icons/lucide/view.rb
|
1545
1547
|
- lib/phlex/icons/lucide/voicemail.rb
|
1548
|
+
- lib/phlex/icons/lucide/volleyball.rb
|
1546
1549
|
- lib/phlex/icons/lucide/volume.rb
|
1547
1550
|
- lib/phlex/icons/lucide/volume_1.rb
|
1548
1551
|
- lib/phlex/icons/lucide/volume_2.rb
|