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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 426dc6ba3eade321118866fc8ac961e7f839ebd75748678e3308dd7d00db4118
4
- data.tar.gz: 56c7da7be8c797424e5b0a6dccaffd04e9489ee16134cbdc90f6873d3cfde9b6
3
+ metadata.gz: 2a2ea5dbe4003b7bcb3c8d9be533ca916fe532f1f07814f92b436c2ea5fdcf62
4
+ data.tar.gz: e1cdd5f6929e08e9bcd3354b3c813761a982f9e03f4c849cb78ef4f7214faede
5
5
  SHA512:
6
- metadata.gz: 73f301df22e996f985dae815746e7c9deee1d57713653abe691f393cb763b67fcbda2b0a28061cee981e17ac8d1ad3958afed1a969ce5d1e64fc68e590be5853
7
- data.tar.gz: 23e4ddb4c081e3517be23a8b94eec72d71a4c188065ae927a3f2d3e23237e8a2e86e25a91bb54b56aca3ae5a14115bc4adc3bec58de6de955a63844784acfe23
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.line(x1: '21', x2: '3', y1: '6', y2: '6')
19
- s.line(x1: '17', x2: '7', y1: '12', y2: '12')
20
- s.line(x1: '19', x2: '5', y1: '18', y2: '18')
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.line(x1: '3', x2: '21', y1: '6', y2: '6')
19
- s.line(x1: '3', x2: '21', y1: '12', y2: '12')
20
- s.line(x1: '3', x2: '21', y1: '18', y2: '18')
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.line(x1: '21', x2: '3', y1: '6', y2: '6')
19
- s.line(x1: '15', x2: '3', y1: '12', y2: '12')
20
- s.line(x1: '17', x2: '3', y1: '18', y2: '18')
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.line(x1: '21', x2: '3', y1: '6', y2: '6')
19
- s.line(x1: '21', x2: '9', y1: '12', y2: '12')
20
- s.line(x1: '21', x2: '7', y1: '18', y2: '18')
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(d: 'M5.5 8.5 9 12l-3.5 3.5L2 12l3.5-3.5Z')
19
- s.path(d: 'm12 2 3.5 3.5L12 9 8.5 5.5 12 2Z')
20
- s.path(d: 'M18.5 8.5 22 12l-3.5 3.5L15 12l3.5-3.5Z')
21
- s.path(d: 'm12 15 3.5 3.5L12 22l-3.5-3.5L12 15Z')
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.polyline(points: '7 8 3 12 7 16')
19
- s.line(x1: '21', x2: '11', y1: '12', y2: '12')
20
- s.line(x1: '21', x2: '11', y1: '6', y2: '6')
21
- s.line(x1: '21', x2: '11', y1: '18', y2: '18')
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.polyline(points: '3 8 7 12 3 16')
19
- s.line(x1: '21', x2: '11', y1: '12', y2: '12')
20
- s.line(x1: '21', x2: '11', y1: '6', y2: '6')
21
- s.line(x1: '21', x2: '11', y1: '18', y2: '18')
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.line(x1: '8', x2: '21', y1: '6', y2: '6')
19
- s.line(x1: '8', x2: '21', y1: '12', y2: '12')
20
- s.line(x1: '8', x2: '21', y1: '18', y2: '18')
21
- s.line(x1: '3', x2: '3.01', y1: '6', y2: '6')
22
- s.line(x1: '3', x2: '3.01', y1: '12', y2: '12')
23
- s.line(x1: '3', x2: '3.01', y1: '18', y2: '18')
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.line(x1: '10', x2: '21', y1: '6', y2: '6')
19
- s.line(x1: '10', x2: '21', y1: '12', y2: '12')
20
- s.line(x1: '10', x2: '21', y1: '18', y2: '18')
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.polyline(points: '5 9 2 12 5 15')
19
- s.polyline(points: '9 5 12 2 15 5')
20
- s.polyline(points: '15 19 12 22 9 19')
21
- s.polyline(points: '19 9 22 12 19 15')
22
- s.line(x1: '2', x2: '22', y1: '12', y2: '12')
23
- s.line(x1: '12', x2: '12', y1: '2', y2: '22')
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.polyline(points: '13 5 19 5 19 11')
19
- s.polyline(points: '11 19 5 19 5 13')
20
- s.line(x1: '19', x2: '5', y1: '5', y2: '19')
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.polyline(points: '5 11 5 5 11 5')
19
- s.polyline(points: '19 13 19 19 13 19')
20
- s.line(x1: '5', x2: '19', y1: '5', y2: '19')
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.polyline(points: '18 8 22 12 18 16')
19
- s.polyline(points: '6 8 2 12 6 16')
20
- s.line(x1: '2', x2: '22', y1: '12', y2: '12')
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.polyline(points: '8 18 12 22 16 18')
19
- s.polyline(points: '8 6 12 2 16 6')
20
- s.line(x1: '12', x2: '12', y1: '2', y2: '22')
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
- 'M21 8a2 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z'
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
- 'M19 9a7 7 0 1 0-13.6 2.3C6.4 14.4 8 19 8 19h8s1.6-4.6 2.6-7.7c.3-.8.4-1.5.4-2.3'
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: 'M12 19v3')
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: 'M3 11v3a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-3')
19
- s.path(
20
- d:
21
- 'M12 19H4a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3.83'
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
@@ -4,7 +4,7 @@
4
4
  module Phlex
5
5
  module Icons
6
6
  module Lucide
7
- class BoxSelect < Base
7
+ class SquareDashed < Base
8
8
  def view_template
9
9
  svg(
10
10
  **attrs,
@@ -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
@@ -3,7 +3,8 @@
3
3
  module Phlex
4
4
  module Icons
5
5
  module Lucide # rubocop:disable Metrics/ModuleLength
6
- VERSION = '0.446.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'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Phlex
4
4
  module Icons
5
- VERSION = '1.0.0'
5
+ VERSION = '1.2.0'
6
6
  end
7
7
  end
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.0.0
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-09-26 00:00:00.000000000 Z
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