phlex-icons-lucide 2.25.0 → 2.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc165dbae20fe3063e8c63b27e4685de942bea8225039e9a498233a8d1a1560d
4
- data.tar.gz: 130d3debd752984218c9d44041d377180defe31fd1a7707e85b3ddd0d66aa4fe
3
+ metadata.gz: df9effad1e49e0425a64ce01ab1dae61df70c998acf61fcf167df5bfc56486e2
4
+ data.tar.gz: ed3ab644a7ea78925f2c7a30bdcba18a5b8877e1149ab08163641aa0811ee16c
5
5
  SHA512:
6
- metadata.gz: fb7c1853d047e8b33606fd26f88703e7c5bec21b31bacc7b7cef296f99e47fec8a1aa4cb0cab5b87c1fe0c4216c281f117ec46a2b7fb1287923fbac3cb5aeb06
7
- data.tar.gz: 064d2e13a2579d63e75562ecb2a3529cf7b22b7f1dd2a2b73458bfdcf70bcdb6ed043ff916dc26d57f7cd7f04f809bb1378c25d4dceddac5b09b354c96102219
6
+ metadata.gz: 24ed25edcc48f1f3838d4d98e02d9dca0deafe5202aec7412e360444a0a6a9fc8b1f31268c27702c2b56faf5965403043cf1a71acee7bc935526a589bd966395
7
+ data.tar.gz: ce219c348e7e356b984345ac8fd19f4a69fc87bc62d154b835f7546c5d2445afcb1579d5553cda3c4e6e7bb4196ceac3e7737eb8232fd6d0a62c33c66caeafe4
@@ -3,7 +3,7 @@
3
3
  # rubocop:disable Layout/LineLength
4
4
  module PhlexIcons
5
5
  module Lucide
6
- class BadgeHelp < Base
6
+ class BadgeQuestionMark < Base
7
7
  def view_template
8
8
  svg(
9
9
  **attrs,
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class Barrel < 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: 'M10 3a41 41 0 0 0 0 18')
19
+ s.path(d: 'M14 3a41 41 0 0 1 0 18')
20
+ s.path(
21
+ d:
22
+ 'M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z'
23
+ )
24
+ s.path(d: 'M3.84 17h16.32')
25
+ s.path(d: 'M3.84 7h16.32')
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
31
+ # rubocop:enable Layout/LineLength
@@ -14,11 +14,11 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.rect(width: '7', height: '7', x: '14', y: '3', rx: '1')
18
17
  s.path(
19
18
  d:
20
- 'M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3'
19
+ 'M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2'
21
20
  )
21
+ s.rect(x: '14', y: '2', width: '8', height: '8', rx: '1')
22
22
  end
23
23
  end
24
24
  end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class BookAlert < Base
6
+ def view_template
7
+ svg(
8
+ **attrs,
9
+ xmlns: 'http://www.w3.org/2000/svg',
10
+ viewbox: '0 0 24 24',
11
+ fill: 'none',
12
+ stroke: 'currentColor',
13
+ stroke_width: '2',
14
+ stroke_linecap: 'round',
15
+ stroke_linejoin: 'round'
16
+ ) do |s|
17
+ s.path(d: 'M12 13h.01')
18
+ s.path(d: 'M12 6v3')
19
+ s.path(
20
+ d:
21
+ 'M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20'
22
+ )
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide
5
- class CircleHelp < Base
5
+ class CircleQuestionMark < Base
6
6
  def view_template
7
7
  svg(
8
8
  **attrs,
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Metrics/MethodLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class Drone < 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: 'M10 10 7 7')
19
+ s.path(d: 'm10 14-3 3')
20
+ s.path(d: 'm14 10 3-3')
21
+ s.path(d: 'm14 14 3 3')
22
+ s.path(d: 'M14.205 4.139a4 4 0 1 1 5.439 5.863')
23
+ s.path(d: 'M19.637 14a4 4 0 1 1-5.432 5.868')
24
+ s.path(d: 'M4.367 10a4 4 0 1 1 5.438-5.862')
25
+ s.path(d: 'M9.795 19.862a4 4 0 1 1-5.429-5.873')
26
+ s.rect(x: '10', y: '8', width: '4', height: '8', rx: '1')
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
32
+ # rubocop:enable Metrics/MethodLength
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # rubocop:disable Layout/LineLength
4
3
  module PhlexIcons
5
4
  module Lucide
6
5
  class Egg < Base
@@ -14,14 +13,8 @@ module PhlexIcons
14
13
  stroke_width: '2',
15
14
  stroke_linecap: 'round',
16
15
  stroke_linejoin: 'round'
17
- ) do |s|
18
- s.path(
19
- d:
20
- 'M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z'
21
- )
22
- end
16
+ ) { |s| s.path(d: 'M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12') }
23
17
  end
24
18
  end
25
19
  end
26
20
  end
27
- # rubocop:enable Layout/LineLength
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # rubocop:disable Layout/LineLength
4
3
  module PhlexIcons
5
4
  module Lucide
6
5
  class EggOff < Base
@@ -15,18 +14,11 @@ module PhlexIcons
15
14
  stroke_linecap: 'round',
16
15
  stroke_linejoin: 'round'
17
16
  ) do |s|
18
- s.path(
19
- d:
20
- 'M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625'
21
- )
22
- s.path(
23
- d:
24
- 'M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297'
25
- )
26
- s.line(x1: '2', x2: '22', y1: '2', y2: '22')
17
+ s.path(d: 'm2 2 20 20')
18
+ s.path(d: 'M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19')
19
+ s.path(d: 'M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568')
27
20
  end
28
21
  end
29
22
  end
30
23
  end
31
24
  end
32
- # rubocop:enable Layout/LineLength
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide
5
- class FileQuestion < Base
5
+ class FileQuestionMark < Base
6
6
  def view_template
7
7
  svg(
8
8
  **attrs,
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Lucide
5
6
  class HousePlus < Base
@@ -16,13 +17,14 @@ module PhlexIcons
16
17
  ) do |s|
17
18
  s.path(
18
19
  d:
19
- 'M13.22 2.416a2 2 0 0 0-2.511.057l-7 5.999A2 2 0 0 0 3 10v9a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7.354'
20
+ 'M12.662 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v2.475'
20
21
  )
21
- s.path(d: 'M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8')
22
- s.path(d: 'M15 6h6')
23
- s.path(d: 'M18 3v6')
22
+ s.path(d: 'M14.959 12.717A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8')
23
+ s.path(d: 'M15 18h6')
24
+ s.path(d: 'M18 15v6')
24
25
  end
25
26
  end
26
27
  end
27
28
  end
28
29
  end
30
+ # rubocop:enable Layout/LineLength
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide
5
- class MailQuestion < Base
5
+ class MailQuestionMark < Base
6
6
  def view_template
7
7
  svg(
8
8
  **attrs,
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide
5
- class MessageCircleQuestion < Base
5
+ class MessageCircleQuestionMark < Base
6
6
  def view_template
7
7
  svg(
8
8
  **attrs,
@@ -14,9 +14,9 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z')
17
+ s.path(d: 'M12 19v3')
18
18
  s.path(d: 'M19 10v2a7 7 0 0 1-14 0v-2')
19
- s.line(x1: '12', x2: '12', y1: '19', y2: '22')
19
+ s.rect(x: '9', y: '2', width: '6', height: '13', rx: '3')
20
20
  end
21
21
  end
22
22
  end
@@ -14,11 +14,8 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(
18
- d:
19
- 'M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z'
20
- )
21
- s.polyline(points: '8 10 12 14 16 10')
17
+ s.path(d: 'M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z')
18
+ s.path(d: 'm8 10 4 4 4-4')
22
19
  end
23
20
  end
24
21
  end
@@ -18,15 +18,15 @@ module PhlexIcons
18
18
  s.path(d: 'M12 12h.01')
19
19
  s.path(
20
20
  d:
21
- 'M7.5 4.2c-.3-.5-.9-.7-1.3-.4C3.9 5.5 2.3 8.1 2 11c-.1.5.4 1 1 1h5c0-1.5.8-2.8 2-3.4-1.1-1.9-2-3.5-2.5-4.4z'
21
+ 'M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z'
22
22
  )
23
23
  s.path(
24
24
  d:
25
- 'M21 12c.6 0 1-.4 1-1-.3-2.9-1.8-5.5-4.1-7.1-.4-.3-1.1-.2-1.3.3-.6.9-1.5 2.5-2.6 4.3 1.2.7 2 2 2 3.5h5z'
25
+ 'M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z'
26
26
  )
27
27
  s.path(
28
28
  d:
29
- 'M7.5 19.8c-.3.5-.1 1.1.4 1.3 2.6 1.2 5.6 1.2 8.2 0 .5-.2.7-.8.4-1.3-.5-.9-1.4-2.5-2.5-4.3-1.2.7-2.8.7-4 0-1.1 1.8-2 3.4-2.5 4.3z'
29
+ 'M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z'
30
30
  )
31
31
  end
32
32
  end
@@ -14,11 +14,11 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M4.9 19.1C1 15.2 1 8.8 4.9 4.9')
18
- s.path(d: 'M7.8 16.2c-2.3-2.3-2.3-6.1 0-8.5')
17
+ s.path(d: 'M16.247 7.761a6 6 0 0 1 0 8.478')
18
+ s.path(d: 'M19.075 4.933a10 10 0 0 1 0 14.134')
19
+ s.path(d: 'M4.925 19.067a10 10 0 0 1 0-14.134')
20
+ s.path(d: 'M7.753 16.239a6 6 0 0 1 0-8.478')
19
21
  s.circle(cx: '12', cy: '12', r: '2')
20
- s.path(d: 'M16.2 7.8c2.3 2.3 2.3 6.1 0 8.5')
21
- s.path(d: 'M19.1 4.9C23 8.8 23 15.1 19.1 19')
22
22
  end
23
23
  end
24
24
  end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class RectangleCircle < Base
6
+ def view_template
7
+ svg(
8
+ **attrs,
9
+ xmlns: 'http://www.w3.org/2000/svg',
10
+ viewbox: '0 0 24 24',
11
+ fill: 'none',
12
+ stroke: 'currentColor',
13
+ stroke_width: '2',
14
+ stroke_linecap: 'round',
15
+ stroke_linejoin: 'round'
16
+ ) do |s|
17
+ s.path(d: 'M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z')
18
+ s.circle(cx: '14', cy: '12', r: '8')
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -14,8 +14,8 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M20 7h-9')
18
17
  s.path(d: 'M14 17H5')
18
+ s.path(d: 'M19 7h-9')
19
19
  s.circle(cx: '17', cy: '17', r: '3')
20
20
  s.circle(cx: '7', cy: '7', r: '3')
21
21
  end
@@ -3,7 +3,7 @@
3
3
  # rubocop:disable Layout/LineLength
4
4
  module PhlexIcons
5
5
  module Lucide
6
- class ShieldQuestion < Base
6
+ class ShieldQuestionMark < Base
7
7
  def view_template
8
8
  svg(
9
9
  **attrs,
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # rubocop:disable Layout/LineLength
4
3
  module PhlexIcons
5
4
  module Lucide
6
5
  class Stamp < Base
@@ -15,17 +14,14 @@ module PhlexIcons
15
14
  stroke_linecap: 'round',
16
15
  stroke_linejoin: 'round'
17
16
  ) do |s|
18
- s.path(d: 'M5 22h14')
17
+ s.path(d: 'M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13')
19
18
  s.path(
20
19
  d:
21
- 'M19.27 13.73A2.5 2.5 0 0 0 17.5 13h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1.5c0-.66-.26-1.3-.73-1.77Z'
22
- )
23
- s.path(
24
- d: 'M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-3-3c-1.66 0-3 1-3 3s1 2 1 3.5V13'
20
+ 'M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z'
25
21
  )
22
+ s.path(d: 'M5 22h14')
26
23
  end
27
24
  end
28
25
  end
29
26
  end
30
27
  end
31
- # rubocop:enable Layout/LineLength
@@ -14,12 +14,12 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M6 9H4.5a2.5 2.5 0 0 1 0-5H6')
18
- s.path(d: 'M18 9h1.5a2.5 2.5 0 0 0 0-5H18')
17
+ s.path(d: 'M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978')
18
+ s.path(d: 'M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978')
19
+ s.path(d: 'M18 9h1.5a1 1 0 0 0 0-5H18')
19
20
  s.path(d: 'M4 22h16')
20
- s.path(d: 'M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22')
21
- s.path(d: 'M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22')
22
- s.path(d: 'M18 2H6v7a6 6 0 0 0 12 0V2Z')
21
+ s.path(d: 'M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z')
22
+ s.path(d: 'M6 9H4.5a1 1 0 0 1 0-5H6')
23
23
  end
24
24
  end
25
25
  end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Metrics/MethodLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class WifiCog < 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: 'm14.305 19.53.923-.382')
19
+ s.path(d: 'm15.228 16.852-.923-.383')
20
+ s.path(d: 'm16.852 15.228-.383-.923')
21
+ s.path(d: 'm16.852 20.772-.383.924')
22
+ s.path(d: 'm19.148 15.228.383-.923')
23
+ s.path(d: 'm19.53 21.696-.382-.924')
24
+ s.path(d: 'M2 7.82a15 15 0 0 1 20 0')
25
+ s.path(d: 'm20.772 16.852.924-.383')
26
+ s.path(d: 'm20.772 19.148.924.383')
27
+ s.path(d: 'M5 11.858a10 10 0 0 1 11.5-1.785')
28
+ s.path(d: 'M8.5 15.429a5 5 0 0 1 2.413-1.31')
29
+ s.circle(cx: '18', cy: '18', r: '3')
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
35
+ # rubocop:enable Metrics/MethodLength
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.513.0'
5
+ VERSION = '0.518.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -126,7 +126,6 @@ module PhlexIcons
126
126
  autoload :BadgeCheck, 'phlex-icons/lucide/badge_check'
127
127
  autoload :BadgeDollarSign, 'phlex-icons/lucide/badge_dollar_sign'
128
128
  autoload :BadgeEuro, 'phlex-icons/lucide/badge_euro'
129
- autoload :BadgeHelp, 'phlex-icons/lucide/badge_help'
130
129
  autoload :BadgeIndianRupee, 'phlex-icons/lucide/badge_indian_rupee'
131
130
  autoload :BadgeInfo, 'phlex-icons/lucide/badge_info'
132
131
  autoload :BadgeJapaneseYen, 'phlex-icons/lucide/badge_japanese_yen'
@@ -134,6 +133,7 @@ module PhlexIcons
134
133
  autoload :BadgePercent, 'phlex-icons/lucide/badge_percent'
135
134
  autoload :BadgePlus, 'phlex-icons/lucide/badge_plus'
136
135
  autoload :BadgePoundSterling, 'phlex-icons/lucide/badge_pound_sterling'
136
+ autoload :BadgeQuestionMark, 'phlex-icons/lucide/badge_question_mark'
137
137
  autoload :BadgeRussianRuble, 'phlex-icons/lucide/badge_russian_ruble'
138
138
  autoload :BadgeSwissFranc, 'phlex-icons/lucide/badge_swiss_franc'
139
139
  autoload :BadgeX, 'phlex-icons/lucide/badge_x'
@@ -146,6 +146,7 @@ module PhlexIcons
146
146
  autoload :BanknoteArrowUp, 'phlex-icons/lucide/banknote_arrow_up'
147
147
  autoload :BanknoteX, 'phlex-icons/lucide/banknote_x'
148
148
  autoload :Barcode, 'phlex-icons/lucide/barcode'
149
+ autoload :Barrel, 'phlex-icons/lucide/barrel'
149
150
  autoload :Baseline, 'phlex-icons/lucide/baseline'
150
151
  autoload :Bath, 'phlex-icons/lucide/bath'
151
152
  autoload :Battery, 'phlex-icons/lucide/battery'
@@ -195,6 +196,7 @@ module PhlexIcons
195
196
  autoload :Bone, 'phlex-icons/lucide/bone'
196
197
  autoload :Book, 'phlex-icons/lucide/book'
197
198
  autoload :BookA, 'phlex-icons/lucide/book_a'
199
+ autoload :BookAlert, 'phlex-icons/lucide/book_alert'
198
200
  autoload :BookAudio, 'phlex-icons/lucide/book_audio'
199
201
  autoload :BookCheck, 'phlex-icons/lucide/book_check'
200
202
  autoload :BookCopy, 'phlex-icons/lucide/book_copy'
@@ -372,7 +374,6 @@ module PhlexIcons
372
374
  autoload :CircleFadingArrowUp, 'phlex-icons/lucide/circle_fading_arrow_up'
373
375
  autoload :CircleFadingPlus, 'phlex-icons/lucide/circle_fading_plus'
374
376
  autoload :CircleGauge, 'phlex-icons/lucide/circle_gauge'
375
- autoload :CircleHelp, 'phlex-icons/lucide/circle_help'
376
377
  autoload :CircleMinus, 'phlex-icons/lucide/circle_minus'
377
378
  autoload :CircleOff, 'phlex-icons/lucide/circle_off'
378
379
  autoload :CircleParking, 'phlex-icons/lucide/circle_parking'
@@ -383,6 +384,7 @@ module PhlexIcons
383
384
  autoload :CirclePlus, 'phlex-icons/lucide/circle_plus'
384
385
  autoload :CirclePoundSterling, 'phlex-icons/lucide/circle_pound_sterling'
385
386
  autoload :CirclePower, 'phlex-icons/lucide/circle_power'
387
+ autoload :CircleQuestionMark, 'phlex-icons/lucide/circle_question_mark'
386
388
  autoload :CircleSlash, 'phlex-icons/lucide/circle_slash'
387
389
  autoload :CircleSlash2, 'phlex-icons/lucide/circle_slash_2'
388
390
  autoload :CircleSmall, 'phlex-icons/lucide/circle_small'
@@ -537,6 +539,7 @@ module PhlexIcons
537
539
  autoload :Drama, 'phlex-icons/lucide/drama'
538
540
  autoload :Dribbble, 'phlex-icons/lucide/dribbble'
539
541
  autoload :Drill, 'phlex-icons/lucide/drill'
542
+ autoload :Drone, 'phlex-icons/lucide/drone'
540
543
  autoload :Droplet, 'phlex-icons/lucide/droplet'
541
544
  autoload :DropletOff, 'phlex-icons/lucide/droplet_off'
542
545
  autoload :Droplets, 'phlex-icons/lucide/droplets'
@@ -610,7 +613,7 @@ module PhlexIcons
610
613
  autoload :FilePenLine, 'phlex-icons/lucide/file_pen_line'
611
614
  autoload :FilePlus, 'phlex-icons/lucide/file_plus'
612
615
  autoload :FilePlus2, 'phlex-icons/lucide/file_plus_2'
613
- autoload :FileQuestion, 'phlex-icons/lucide/file_question'
616
+ autoload :FileQuestionMark, 'phlex-icons/lucide/file_question_mark'
614
617
  autoload :FileScan, 'phlex-icons/lucide/file_scan'
615
618
  autoload :FileSearch, 'phlex-icons/lucide/file_search'
616
619
  autoload :FileSearch2, 'phlex-icons/lucide/file_search_2'
@@ -906,7 +909,7 @@ module PhlexIcons
906
909
  autoload :MailMinus, 'phlex-icons/lucide/mail_minus'
907
910
  autoload :MailOpen, 'phlex-icons/lucide/mail_open'
908
911
  autoload :MailPlus, 'phlex-icons/lucide/mail_plus'
909
- autoload :MailQuestion, 'phlex-icons/lucide/mail_question'
912
+ autoload :MailQuestionMark, 'phlex-icons/lucide/mail_question_mark'
910
913
  autoload :MailSearch, 'phlex-icons/lucide/mail_search'
911
914
  autoload :MailWarning, 'phlex-icons/lucide/mail_warning'
912
915
  autoload :MailX, 'phlex-icons/lucide/mail_x'
@@ -945,7 +948,7 @@ module PhlexIcons
945
948
  autoload :MessageCircleMore, 'phlex-icons/lucide/message_circle_more'
946
949
  autoload :MessageCircleOff, 'phlex-icons/lucide/message_circle_off'
947
950
  autoload :MessageCirclePlus, 'phlex-icons/lucide/message_circle_plus'
948
- autoload :MessageCircleQuestion, 'phlex-icons/lucide/message_circle_question'
951
+ autoload :MessageCircleQuestionMark, 'phlex-icons/lucide/message_circle_question_mark'
949
952
  autoload :MessageCircleReply, 'phlex-icons/lucide/message_circle_reply'
950
953
  autoload :MessageCircleWarning, 'phlex-icons/lucide/message_circle_warning'
951
954
  autoload :MessageCircleX, 'phlex-icons/lucide/message_circle_x'
@@ -1166,6 +1169,7 @@ module PhlexIcons
1166
1169
  autoload :ReceiptRussianRuble, 'phlex-icons/lucide/receipt_russian_ruble'
1167
1170
  autoload :ReceiptSwissFranc, 'phlex-icons/lucide/receipt_swiss_franc'
1168
1171
  autoload :ReceiptText, 'phlex-icons/lucide/receipt_text'
1172
+ autoload :RectangleCircle, 'phlex-icons/lucide/rectangle_circle'
1169
1173
  autoload :RectangleEllipsis, 'phlex-icons/lucide/rectangle_ellipsis'
1170
1174
  autoload :RectangleGoggles, 'phlex-icons/lucide/rectangle_goggles'
1171
1175
  autoload :RectangleHorizontal, 'phlex-icons/lucide/rectangle_horizontal'
@@ -1268,7 +1272,7 @@ module PhlexIcons
1268
1272
  autoload :ShieldMinus, 'phlex-icons/lucide/shield_minus'
1269
1273
  autoload :ShieldOff, 'phlex-icons/lucide/shield_off'
1270
1274
  autoload :ShieldPlus, 'phlex-icons/lucide/shield_plus'
1271
- autoload :ShieldQuestion, 'phlex-icons/lucide/shield_question'
1275
+ autoload :ShieldQuestionMark, 'phlex-icons/lucide/shield_question_mark'
1272
1276
  autoload :ShieldUser, 'phlex-icons/lucide/shield_user'
1273
1277
  autoload :ShieldX, 'phlex-icons/lucide/shield_x'
1274
1278
  autoload :Ship, 'phlex-icons/lucide/ship'
@@ -1590,6 +1594,7 @@ module PhlexIcons
1590
1594
  autoload :WheatOff, 'phlex-icons/lucide/wheat_off'
1591
1595
  autoload :WholeWord, 'phlex-icons/lucide/whole_word'
1592
1596
  autoload :Wifi, 'phlex-icons/lucide/wifi'
1597
+ autoload :WifiCog, 'phlex-icons/lucide/wifi_cog'
1593
1598
  autoload :WifiHigh, 'phlex-icons/lucide/wifi_high'
1594
1599
  autoload :WifiLow, 'phlex-icons/lucide/wifi_low'
1595
1600
  autoload :WifiOff, 'phlex-icons/lucide/wifi_off'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.25.0'
4
+ VERSION = '2.27.0'
5
5
  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: 2.25.0
4
+ version: 2.27.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: 2025-06-07 00:00:00.000000000 Z
11
+ date: 2025-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -171,7 +171,6 @@ files:
171
171
  - lib/phlex-icons/lucide/badge_check.rb
172
172
  - lib/phlex-icons/lucide/badge_dollar_sign.rb
173
173
  - lib/phlex-icons/lucide/badge_euro.rb
174
- - lib/phlex-icons/lucide/badge_help.rb
175
174
  - lib/phlex-icons/lucide/badge_indian_rupee.rb
176
175
  - lib/phlex-icons/lucide/badge_info.rb
177
176
  - lib/phlex-icons/lucide/badge_japanese_yen.rb
@@ -179,6 +178,7 @@ files:
179
178
  - lib/phlex-icons/lucide/badge_percent.rb
180
179
  - lib/phlex-icons/lucide/badge_plus.rb
181
180
  - lib/phlex-icons/lucide/badge_pound_sterling.rb
181
+ - lib/phlex-icons/lucide/badge_question_mark.rb
182
182
  - lib/phlex-icons/lucide/badge_russian_ruble.rb
183
183
  - lib/phlex-icons/lucide/badge_swiss_franc.rb
184
184
  - lib/phlex-icons/lucide/badge_x.rb
@@ -191,6 +191,7 @@ files:
191
191
  - lib/phlex-icons/lucide/banknote_arrow_up.rb
192
192
  - lib/phlex-icons/lucide/banknote_x.rb
193
193
  - lib/phlex-icons/lucide/barcode.rb
194
+ - lib/phlex-icons/lucide/barrel.rb
194
195
  - lib/phlex-icons/lucide/base.rb
195
196
  - lib/phlex-icons/lucide/baseline.rb
196
197
  - lib/phlex-icons/lucide/bath.rb
@@ -241,6 +242,7 @@ files:
241
242
  - lib/phlex-icons/lucide/bone.rb
242
243
  - lib/phlex-icons/lucide/book.rb
243
244
  - lib/phlex-icons/lucide/book_a.rb
245
+ - lib/phlex-icons/lucide/book_alert.rb
244
246
  - lib/phlex-icons/lucide/book_audio.rb
245
247
  - lib/phlex-icons/lucide/book_check.rb
246
248
  - lib/phlex-icons/lucide/book_copy.rb
@@ -418,7 +420,6 @@ files:
418
420
  - lib/phlex-icons/lucide/circle_fading_arrow_up.rb
419
421
  - lib/phlex-icons/lucide/circle_fading_plus.rb
420
422
  - lib/phlex-icons/lucide/circle_gauge.rb
421
- - lib/phlex-icons/lucide/circle_help.rb
422
423
  - lib/phlex-icons/lucide/circle_minus.rb
423
424
  - lib/phlex-icons/lucide/circle_off.rb
424
425
  - lib/phlex-icons/lucide/circle_parking.rb
@@ -429,6 +430,7 @@ files:
429
430
  - lib/phlex-icons/lucide/circle_plus.rb
430
431
  - lib/phlex-icons/lucide/circle_pound_sterling.rb
431
432
  - lib/phlex-icons/lucide/circle_power.rb
433
+ - lib/phlex-icons/lucide/circle_question_mark.rb
432
434
  - lib/phlex-icons/lucide/circle_slash.rb
433
435
  - lib/phlex-icons/lucide/circle_slash_2.rb
434
436
  - lib/phlex-icons/lucide/circle_small.rb
@@ -583,6 +585,7 @@ files:
583
585
  - lib/phlex-icons/lucide/drama.rb
584
586
  - lib/phlex-icons/lucide/dribbble.rb
585
587
  - lib/phlex-icons/lucide/drill.rb
588
+ - lib/phlex-icons/lucide/drone.rb
586
589
  - lib/phlex-icons/lucide/droplet.rb
587
590
  - lib/phlex-icons/lucide/droplet_off.rb
588
591
  - lib/phlex-icons/lucide/droplets.rb
@@ -656,7 +659,7 @@ files:
656
659
  - lib/phlex-icons/lucide/file_pen_line.rb
657
660
  - lib/phlex-icons/lucide/file_plus.rb
658
661
  - lib/phlex-icons/lucide/file_plus_2.rb
659
- - lib/phlex-icons/lucide/file_question.rb
662
+ - lib/phlex-icons/lucide/file_question_mark.rb
660
663
  - lib/phlex-icons/lucide/file_scan.rb
661
664
  - lib/phlex-icons/lucide/file_search.rb
662
665
  - lib/phlex-icons/lucide/file_search_2.rb
@@ -952,7 +955,7 @@ files:
952
955
  - lib/phlex-icons/lucide/mail_minus.rb
953
956
  - lib/phlex-icons/lucide/mail_open.rb
954
957
  - lib/phlex-icons/lucide/mail_plus.rb
955
- - lib/phlex-icons/lucide/mail_question.rb
958
+ - lib/phlex-icons/lucide/mail_question_mark.rb
956
959
  - lib/phlex-icons/lucide/mail_search.rb
957
960
  - lib/phlex-icons/lucide/mail_warning.rb
958
961
  - lib/phlex-icons/lucide/mail_x.rb
@@ -991,7 +994,7 @@ files:
991
994
  - lib/phlex-icons/lucide/message_circle_more.rb
992
995
  - lib/phlex-icons/lucide/message_circle_off.rb
993
996
  - lib/phlex-icons/lucide/message_circle_plus.rb
994
- - lib/phlex-icons/lucide/message_circle_question.rb
997
+ - lib/phlex-icons/lucide/message_circle_question_mark.rb
995
998
  - lib/phlex-icons/lucide/message_circle_reply.rb
996
999
  - lib/phlex-icons/lucide/message_circle_warning.rb
997
1000
  - lib/phlex-icons/lucide/message_circle_x.rb
@@ -1212,6 +1215,7 @@ files:
1212
1215
  - lib/phlex-icons/lucide/receipt_russian_ruble.rb
1213
1216
  - lib/phlex-icons/lucide/receipt_swiss_franc.rb
1214
1217
  - lib/phlex-icons/lucide/receipt_text.rb
1218
+ - lib/phlex-icons/lucide/rectangle_circle.rb
1215
1219
  - lib/phlex-icons/lucide/rectangle_ellipsis.rb
1216
1220
  - lib/phlex-icons/lucide/rectangle_goggles.rb
1217
1221
  - lib/phlex-icons/lucide/rectangle_horizontal.rb
@@ -1314,7 +1318,7 @@ files:
1314
1318
  - lib/phlex-icons/lucide/shield_minus.rb
1315
1319
  - lib/phlex-icons/lucide/shield_off.rb
1316
1320
  - lib/phlex-icons/lucide/shield_plus.rb
1317
- - lib/phlex-icons/lucide/shield_question.rb
1321
+ - lib/phlex-icons/lucide/shield_question_mark.rb
1318
1322
  - lib/phlex-icons/lucide/shield_user.rb
1319
1323
  - lib/phlex-icons/lucide/shield_x.rb
1320
1324
  - lib/phlex-icons/lucide/ship.rb
@@ -1636,6 +1640,7 @@ files:
1636
1640
  - lib/phlex-icons/lucide/wheat_off.rb
1637
1641
  - lib/phlex-icons/lucide/whole_word.rb
1638
1642
  - lib/phlex-icons/lucide/wifi.rb
1643
+ - lib/phlex-icons/lucide/wifi_cog.rb
1639
1644
  - lib/phlex-icons/lucide/wifi_high.rb
1640
1645
  - lib/phlex-icons/lucide/wifi_low.rb
1641
1646
  - lib/phlex-icons/lucide/wifi_off.rb