phlex-icons-lucide 2.26.0 → 2.28.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.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/lib/phlex-icons/lucide/{badge_help.rb → badge_question_mark.rb} +1 -1
  3. data/lib/phlex-icons/lucide/barrel.rb +31 -0
  4. data/lib/phlex-icons/lucide/blocks.rb +2 -2
  5. data/lib/phlex-icons/lucide/bottle_wine.rb +28 -0
  6. data/lib/phlex-icons/lucide/circle_arrow_left.rb +1 -1
  7. data/lib/phlex-icons/lucide/circle_arrow_right.rb +1 -1
  8. data/lib/phlex-icons/lucide/{circle_help.rb → circle_question_mark.rb} +1 -1
  9. data/lib/phlex-icons/lucide/drone.rb +32 -0
  10. data/lib/phlex-icons/lucide/egg.rb +1 -8
  11. data/lib/phlex-icons/lucide/egg_off.rb +3 -11
  12. data/lib/phlex-icons/lucide/{file_question.rb → file_question_mark.rb} +1 -1
  13. data/lib/phlex-icons/lucide/georgian_lari.rb +25 -0
  14. data/lib/phlex-icons/lucide/line_squiggle.rb +25 -0
  15. data/lib/phlex-icons/lucide/{mail_question.rb → mail_question_mark.rb} +1 -1
  16. data/lib/phlex-icons/lucide/{message_circle_question.rb → message_circle_question_mark.rb} +1 -1
  17. data/lib/phlex-icons/lucide/mic.rb +2 -2
  18. data/lib/phlex-icons/lucide/pocket.rb +2 -5
  19. data/lib/phlex-icons/lucide/radio.rb +4 -4
  20. data/lib/phlex-icons/lucide/rectangle_circle.rb +23 -0
  21. data/lib/phlex-icons/lucide/{shield_question.rb → shield_question_mark.rb} +1 -1
  22. data/lib/phlex-icons/lucide/shopping_bag.rb +7 -2
  23. data/lib/phlex-icons/lucide/spool.rb +29 -0
  24. data/lib/phlex-icons/lucide/squircle_dashed.rb +29 -0
  25. data/lib/phlex-icons/lucide/stamp.rb +3 -7
  26. data/lib/phlex-icons/lucide/wifi_cog.rb +35 -0
  27. data/lib/phlex-icons/lucide.rb +16 -7
  28. data/lib/phlex-icons/version.rb +1 -1
  29. metadata +17 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80c601bcd390c895f7a6af5d5a005a34fc434108a3ecce5dc160d56823ed388d
4
- data.tar.gz: 830f2b30cf7ebaf4e2b4024ad1dcabf996061843e1668023c49b9c524b2b3b96
3
+ metadata.gz: 2f51ecfbae7b326a58fd618e9ed33c68b6e5c47723ce2c3bea692c66147a9f4f
4
+ data.tar.gz: 5adc2940bddc84deae3292fd78b3b1927cf599184b85696cc6dda5207044ead3
5
5
  SHA512:
6
- metadata.gz: 1d9e647947b1638ee6781cb63ca51e9fbd0242c1d5783a6a284677b9ced9ad203ed96be8270e3924c4083b61733c081cd5d787d1f21c21bd401d015ab465491a
7
- data.tar.gz: 83dcea59d2e09c52b99de697e1a627d3cc792d75338af8fca30e4cd212245f0e2451b69667f97ab7154d8fa7fbe6ab024d5502472c871852975375c2de0a5a08
6
+ metadata.gz: 81d554f3307e66e52ab6ef70e63bc762229d6bfbdac71fe8378188d7fbbe3565b926abb6d5df755a00a5c521c7988eacf373dacbbce4eee7224ebb44e1728559
7
+ data.tar.gz: 55bc81c7184562e3bffd590b894f4b68d8d544fbb927a45983b557e633037eefb0eea7545d2caf9667719920fc5d5e135695b1bcc8e0cf147ef90d5aa184727a
@@ -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,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class BottleWine < 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(
19
+ d:
20
+ 'M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z'
21
+ )
22
+ s.path(d: 'M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4')
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ # rubocop:enable Layout/LineLength
@@ -15,8 +15,8 @@ module PhlexIcons
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
17
  s.circle(cx: '12', cy: '12', r: '10')
18
- s.path(d: 'M16 12H8')
19
18
  s.path(d: 'm12 8-4 4 4 4')
19
+ s.path(d: 'M16 12H8')
20
20
  end
21
21
  end
22
22
  end
@@ -15,8 +15,8 @@ module PhlexIcons
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
17
  s.circle(cx: '12', cy: '12', r: '10')
18
- s.path(d: 'M8 12h8')
19
18
  s.path(d: 'm12 16 4-4-4-4')
19
+ s.path(d: 'M8 12h8')
20
20
  end
21
21
  end
22
22
  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,
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class GeorgianLari < 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: 'M11.5 21a7.5 7.5 0 1 1 7.35-9')
18
+ s.path(d: 'M13 12V3')
19
+ s.path(d: 'M4 21h16')
20
+ s.path(d: 'M9 12V3')
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class LineSquiggle < 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(
18
+ d:
19
+ 'M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2'
20
+ )
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -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
@@ -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
@@ -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,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 ShoppingBag < Base
@@ -14,11 +15,15 @@ module PhlexIcons
14
15
  stroke_linecap: 'round',
15
16
  stroke_linejoin: 'round'
16
17
  ) do |s|
17
- s.path(d: 'M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z')
18
- s.path(d: 'M3 6h18')
19
18
  s.path(d: 'M16 10a4 4 0 0 1-8 0')
19
+ s.path(d: 'M3.103 6.034h17.794')
20
+ s.path(
21
+ d:
22
+ 'M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z'
23
+ )
20
24
  end
21
25
  end
22
26
  end
23
27
  end
24
28
  end
29
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Spool < 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(
18
+ d:
19
+ 'M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66'
20
+ )
21
+ s.path(
22
+ d:
23
+ 'm7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178'
24
+ )
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class SquircleDashed < 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: 'M13.77 3.043a34 34 0 0 0-3.54 0')
18
+ s.path(d: 'M13.771 20.956a33 33 0 0 1-3.541.001')
19
+ s.path(d: 'M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44')
20
+ s.path(d: 'M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438')
21
+ s.path(d: 'M20.957 10.23a33 33 0 0 1 0 3.54')
22
+ s.path(d: 'M3.043 10.23a34 34 0 0 0 .001 3.541')
23
+ s.path(d: 'M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438')
24
+ s.path(d: 'M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44')
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -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
@@ -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.514.0'
5
+ VERSION = '0.523.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'
@@ -227,6 +228,7 @@ module PhlexIcons
227
228
  autoload :Bot, 'phlex-icons/lucide/bot'
228
229
  autoload :BotMessageSquare, 'phlex-icons/lucide/bot_message_square'
229
230
  autoload :BotOff, 'phlex-icons/lucide/bot_off'
231
+ autoload :BottleWine, 'phlex-icons/lucide/bottle_wine'
230
232
  autoload :BowArrow, 'phlex-icons/lucide/bow_arrow'
231
233
  autoload :Box, 'phlex-icons/lucide/box'
232
234
  autoload :Boxes, 'phlex-icons/lucide/boxes'
@@ -373,7 +375,6 @@ module PhlexIcons
373
375
  autoload :CircleFadingArrowUp, 'phlex-icons/lucide/circle_fading_arrow_up'
374
376
  autoload :CircleFadingPlus, 'phlex-icons/lucide/circle_fading_plus'
375
377
  autoload :CircleGauge, 'phlex-icons/lucide/circle_gauge'
376
- autoload :CircleHelp, 'phlex-icons/lucide/circle_help'
377
378
  autoload :CircleMinus, 'phlex-icons/lucide/circle_minus'
378
379
  autoload :CircleOff, 'phlex-icons/lucide/circle_off'
379
380
  autoload :CircleParking, 'phlex-icons/lucide/circle_parking'
@@ -384,6 +385,7 @@ module PhlexIcons
384
385
  autoload :CirclePlus, 'phlex-icons/lucide/circle_plus'
385
386
  autoload :CirclePoundSterling, 'phlex-icons/lucide/circle_pound_sterling'
386
387
  autoload :CirclePower, 'phlex-icons/lucide/circle_power'
388
+ autoload :CircleQuestionMark, 'phlex-icons/lucide/circle_question_mark'
387
389
  autoload :CircleSlash, 'phlex-icons/lucide/circle_slash'
388
390
  autoload :CircleSlash2, 'phlex-icons/lucide/circle_slash_2'
389
391
  autoload :CircleSmall, 'phlex-icons/lucide/circle_small'
@@ -538,6 +540,7 @@ module PhlexIcons
538
540
  autoload :Drama, 'phlex-icons/lucide/drama'
539
541
  autoload :Dribbble, 'phlex-icons/lucide/dribbble'
540
542
  autoload :Drill, 'phlex-icons/lucide/drill'
543
+ autoload :Drone, 'phlex-icons/lucide/drone'
541
544
  autoload :Droplet, 'phlex-icons/lucide/droplet'
542
545
  autoload :DropletOff, 'phlex-icons/lucide/droplet_off'
543
546
  autoload :Droplets, 'phlex-icons/lucide/droplets'
@@ -611,7 +614,7 @@ module PhlexIcons
611
614
  autoload :FilePenLine, 'phlex-icons/lucide/file_pen_line'
612
615
  autoload :FilePlus, 'phlex-icons/lucide/file_plus'
613
616
  autoload :FilePlus2, 'phlex-icons/lucide/file_plus_2'
614
- autoload :FileQuestion, 'phlex-icons/lucide/file_question'
617
+ autoload :FileQuestionMark, 'phlex-icons/lucide/file_question_mark'
615
618
  autoload :FileScan, 'phlex-icons/lucide/file_scan'
616
619
  autoload :FileSearch, 'phlex-icons/lucide/file_search'
617
620
  autoload :FileSearch2, 'phlex-icons/lucide/file_search_2'
@@ -711,6 +714,7 @@ module PhlexIcons
711
714
  autoload :Gauge, 'phlex-icons/lucide/gauge'
712
715
  autoload :Gavel, 'phlex-icons/lucide/gavel'
713
716
  autoload :Gem, 'phlex-icons/lucide/gem'
717
+ autoload :GeorgianLari, 'phlex-icons/lucide/georgian_lari'
714
718
  autoload :Ghost, 'phlex-icons/lucide/ghost'
715
719
  autoload :Gift, 'phlex-icons/lucide/gift'
716
720
  autoload :GitBranch, 'phlex-icons/lucide/git_branch'
@@ -864,6 +868,7 @@ module PhlexIcons
864
868
  autoload :Ligature, 'phlex-icons/lucide/ligature'
865
869
  autoload :Lightbulb, 'phlex-icons/lucide/lightbulb'
866
870
  autoload :LightbulbOff, 'phlex-icons/lucide/lightbulb_off'
871
+ autoload :LineSquiggle, 'phlex-icons/lucide/line_squiggle'
867
872
  autoload :Link, 'phlex-icons/lucide/link'
868
873
  autoload :Link2, 'phlex-icons/lucide/link_2'
869
874
  autoload :Link2Off, 'phlex-icons/lucide/link_2_off'
@@ -907,7 +912,7 @@ module PhlexIcons
907
912
  autoload :MailMinus, 'phlex-icons/lucide/mail_minus'
908
913
  autoload :MailOpen, 'phlex-icons/lucide/mail_open'
909
914
  autoload :MailPlus, 'phlex-icons/lucide/mail_plus'
910
- autoload :MailQuestion, 'phlex-icons/lucide/mail_question'
915
+ autoload :MailQuestionMark, 'phlex-icons/lucide/mail_question_mark'
911
916
  autoload :MailSearch, 'phlex-icons/lucide/mail_search'
912
917
  autoload :MailWarning, 'phlex-icons/lucide/mail_warning'
913
918
  autoload :MailX, 'phlex-icons/lucide/mail_x'
@@ -946,7 +951,7 @@ module PhlexIcons
946
951
  autoload :MessageCircleMore, 'phlex-icons/lucide/message_circle_more'
947
952
  autoload :MessageCircleOff, 'phlex-icons/lucide/message_circle_off'
948
953
  autoload :MessageCirclePlus, 'phlex-icons/lucide/message_circle_plus'
949
- autoload :MessageCircleQuestion, 'phlex-icons/lucide/message_circle_question'
954
+ autoload :MessageCircleQuestionMark, 'phlex-icons/lucide/message_circle_question_mark'
950
955
  autoload :MessageCircleReply, 'phlex-icons/lucide/message_circle_reply'
951
956
  autoload :MessageCircleWarning, 'phlex-icons/lucide/message_circle_warning'
952
957
  autoload :MessageCircleX, 'phlex-icons/lucide/message_circle_x'
@@ -1167,6 +1172,7 @@ module PhlexIcons
1167
1172
  autoload :ReceiptRussianRuble, 'phlex-icons/lucide/receipt_russian_ruble'
1168
1173
  autoload :ReceiptSwissFranc, 'phlex-icons/lucide/receipt_swiss_franc'
1169
1174
  autoload :ReceiptText, 'phlex-icons/lucide/receipt_text'
1175
+ autoload :RectangleCircle, 'phlex-icons/lucide/rectangle_circle'
1170
1176
  autoload :RectangleEllipsis, 'phlex-icons/lucide/rectangle_ellipsis'
1171
1177
  autoload :RectangleGoggles, 'phlex-icons/lucide/rectangle_goggles'
1172
1178
  autoload :RectangleHorizontal, 'phlex-icons/lucide/rectangle_horizontal'
@@ -1269,7 +1275,7 @@ module PhlexIcons
1269
1275
  autoload :ShieldMinus, 'phlex-icons/lucide/shield_minus'
1270
1276
  autoload :ShieldOff, 'phlex-icons/lucide/shield_off'
1271
1277
  autoload :ShieldPlus, 'phlex-icons/lucide/shield_plus'
1272
- autoload :ShieldQuestion, 'phlex-icons/lucide/shield_question'
1278
+ autoload :ShieldQuestionMark, 'phlex-icons/lucide/shield_question_mark'
1273
1279
  autoload :ShieldUser, 'phlex-icons/lucide/shield_user'
1274
1280
  autoload :ShieldX, 'phlex-icons/lucide/shield_x'
1275
1281
  autoload :Ship, 'phlex-icons/lucide/ship'
@@ -1324,6 +1330,7 @@ module PhlexIcons
1324
1330
  autoload :Spline, 'phlex-icons/lucide/spline'
1325
1331
  autoload :SplinePointer, 'phlex-icons/lucide/spline_pointer'
1326
1332
  autoload :Split, 'phlex-icons/lucide/split'
1333
+ autoload :Spool, 'phlex-icons/lucide/spool'
1327
1334
  autoload :SprayCan, 'phlex-icons/lucide/spray_can'
1328
1335
  autoload :Sprout, 'phlex-icons/lucide/sprout'
1329
1336
  autoload :Square, 'phlex-icons/lucide/square'
@@ -1393,6 +1400,7 @@ module PhlexIcons
1393
1400
  autoload :SquaresSubtract, 'phlex-icons/lucide/squares_subtract'
1394
1401
  autoload :SquaresUnite, 'phlex-icons/lucide/squares_unite'
1395
1402
  autoload :Squircle, 'phlex-icons/lucide/squircle'
1403
+ autoload :SquircleDashed, 'phlex-icons/lucide/squircle_dashed'
1396
1404
  autoload :Squirrel, 'phlex-icons/lucide/squirrel'
1397
1405
  autoload :Stamp, 'phlex-icons/lucide/stamp'
1398
1406
  autoload :Star, 'phlex-icons/lucide/star'
@@ -1591,6 +1599,7 @@ module PhlexIcons
1591
1599
  autoload :WheatOff, 'phlex-icons/lucide/wheat_off'
1592
1600
  autoload :WholeWord, 'phlex-icons/lucide/whole_word'
1593
1601
  autoload :Wifi, 'phlex-icons/lucide/wifi'
1602
+ autoload :WifiCog, 'phlex-icons/lucide/wifi_cog'
1594
1603
  autoload :WifiHigh, 'phlex-icons/lucide/wifi_high'
1595
1604
  autoload :WifiLow, 'phlex-icons/lucide/wifi_low'
1596
1605
  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.26.0'
4
+ VERSION = '2.28.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.26.0
4
+ version: 2.28.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-14 00:00:00.000000000 Z
11
+ date: 2025-06-29 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
@@ -273,6 +274,7 @@ files:
273
274
  - lib/phlex-icons/lucide/bot.rb
274
275
  - lib/phlex-icons/lucide/bot_message_square.rb
275
276
  - lib/phlex-icons/lucide/bot_off.rb
277
+ - lib/phlex-icons/lucide/bottle_wine.rb
276
278
  - lib/phlex-icons/lucide/bow_arrow.rb
277
279
  - lib/phlex-icons/lucide/box.rb
278
280
  - lib/phlex-icons/lucide/boxes.rb
@@ -419,7 +421,6 @@ files:
419
421
  - lib/phlex-icons/lucide/circle_fading_arrow_up.rb
420
422
  - lib/phlex-icons/lucide/circle_fading_plus.rb
421
423
  - lib/phlex-icons/lucide/circle_gauge.rb
422
- - lib/phlex-icons/lucide/circle_help.rb
423
424
  - lib/phlex-icons/lucide/circle_minus.rb
424
425
  - lib/phlex-icons/lucide/circle_off.rb
425
426
  - lib/phlex-icons/lucide/circle_parking.rb
@@ -430,6 +431,7 @@ files:
430
431
  - lib/phlex-icons/lucide/circle_plus.rb
431
432
  - lib/phlex-icons/lucide/circle_pound_sterling.rb
432
433
  - lib/phlex-icons/lucide/circle_power.rb
434
+ - lib/phlex-icons/lucide/circle_question_mark.rb
433
435
  - lib/phlex-icons/lucide/circle_slash.rb
434
436
  - lib/phlex-icons/lucide/circle_slash_2.rb
435
437
  - lib/phlex-icons/lucide/circle_small.rb
@@ -584,6 +586,7 @@ files:
584
586
  - lib/phlex-icons/lucide/drama.rb
585
587
  - lib/phlex-icons/lucide/dribbble.rb
586
588
  - lib/phlex-icons/lucide/drill.rb
589
+ - lib/phlex-icons/lucide/drone.rb
587
590
  - lib/phlex-icons/lucide/droplet.rb
588
591
  - lib/phlex-icons/lucide/droplet_off.rb
589
592
  - lib/phlex-icons/lucide/droplets.rb
@@ -657,7 +660,7 @@ files:
657
660
  - lib/phlex-icons/lucide/file_pen_line.rb
658
661
  - lib/phlex-icons/lucide/file_plus.rb
659
662
  - lib/phlex-icons/lucide/file_plus_2.rb
660
- - lib/phlex-icons/lucide/file_question.rb
663
+ - lib/phlex-icons/lucide/file_question_mark.rb
661
664
  - lib/phlex-icons/lucide/file_scan.rb
662
665
  - lib/phlex-icons/lucide/file_search.rb
663
666
  - lib/phlex-icons/lucide/file_search_2.rb
@@ -757,6 +760,7 @@ files:
757
760
  - lib/phlex-icons/lucide/gauge.rb
758
761
  - lib/phlex-icons/lucide/gavel.rb
759
762
  - lib/phlex-icons/lucide/gem.rb
763
+ - lib/phlex-icons/lucide/georgian_lari.rb
760
764
  - lib/phlex-icons/lucide/ghost.rb
761
765
  - lib/phlex-icons/lucide/gift.rb
762
766
  - lib/phlex-icons/lucide/git_branch.rb
@@ -910,6 +914,7 @@ files:
910
914
  - lib/phlex-icons/lucide/ligature.rb
911
915
  - lib/phlex-icons/lucide/lightbulb.rb
912
916
  - lib/phlex-icons/lucide/lightbulb_off.rb
917
+ - lib/phlex-icons/lucide/line_squiggle.rb
913
918
  - lib/phlex-icons/lucide/link.rb
914
919
  - lib/phlex-icons/lucide/link_2.rb
915
920
  - lib/phlex-icons/lucide/link_2_off.rb
@@ -953,7 +958,7 @@ files:
953
958
  - lib/phlex-icons/lucide/mail_minus.rb
954
959
  - lib/phlex-icons/lucide/mail_open.rb
955
960
  - lib/phlex-icons/lucide/mail_plus.rb
956
- - lib/phlex-icons/lucide/mail_question.rb
961
+ - lib/phlex-icons/lucide/mail_question_mark.rb
957
962
  - lib/phlex-icons/lucide/mail_search.rb
958
963
  - lib/phlex-icons/lucide/mail_warning.rb
959
964
  - lib/phlex-icons/lucide/mail_x.rb
@@ -992,7 +997,7 @@ files:
992
997
  - lib/phlex-icons/lucide/message_circle_more.rb
993
998
  - lib/phlex-icons/lucide/message_circle_off.rb
994
999
  - lib/phlex-icons/lucide/message_circle_plus.rb
995
- - lib/phlex-icons/lucide/message_circle_question.rb
1000
+ - lib/phlex-icons/lucide/message_circle_question_mark.rb
996
1001
  - lib/phlex-icons/lucide/message_circle_reply.rb
997
1002
  - lib/phlex-icons/lucide/message_circle_warning.rb
998
1003
  - lib/phlex-icons/lucide/message_circle_x.rb
@@ -1213,6 +1218,7 @@ files:
1213
1218
  - lib/phlex-icons/lucide/receipt_russian_ruble.rb
1214
1219
  - lib/phlex-icons/lucide/receipt_swiss_franc.rb
1215
1220
  - lib/phlex-icons/lucide/receipt_text.rb
1221
+ - lib/phlex-icons/lucide/rectangle_circle.rb
1216
1222
  - lib/phlex-icons/lucide/rectangle_ellipsis.rb
1217
1223
  - lib/phlex-icons/lucide/rectangle_goggles.rb
1218
1224
  - lib/phlex-icons/lucide/rectangle_horizontal.rb
@@ -1315,7 +1321,7 @@ files:
1315
1321
  - lib/phlex-icons/lucide/shield_minus.rb
1316
1322
  - lib/phlex-icons/lucide/shield_off.rb
1317
1323
  - lib/phlex-icons/lucide/shield_plus.rb
1318
- - lib/phlex-icons/lucide/shield_question.rb
1324
+ - lib/phlex-icons/lucide/shield_question_mark.rb
1319
1325
  - lib/phlex-icons/lucide/shield_user.rb
1320
1326
  - lib/phlex-icons/lucide/shield_x.rb
1321
1327
  - lib/phlex-icons/lucide/ship.rb
@@ -1370,6 +1376,7 @@ files:
1370
1376
  - lib/phlex-icons/lucide/spline.rb
1371
1377
  - lib/phlex-icons/lucide/spline_pointer.rb
1372
1378
  - lib/phlex-icons/lucide/split.rb
1379
+ - lib/phlex-icons/lucide/spool.rb
1373
1380
  - lib/phlex-icons/lucide/spray_can.rb
1374
1381
  - lib/phlex-icons/lucide/sprout.rb
1375
1382
  - lib/phlex-icons/lucide/square.rb
@@ -1439,6 +1446,7 @@ files:
1439
1446
  - lib/phlex-icons/lucide/squares_subtract.rb
1440
1447
  - lib/phlex-icons/lucide/squares_unite.rb
1441
1448
  - lib/phlex-icons/lucide/squircle.rb
1449
+ - lib/phlex-icons/lucide/squircle_dashed.rb
1442
1450
  - lib/phlex-icons/lucide/squirrel.rb
1443
1451
  - lib/phlex-icons/lucide/stamp.rb
1444
1452
  - lib/phlex-icons/lucide/star.rb
@@ -1637,6 +1645,7 @@ files:
1637
1645
  - lib/phlex-icons/lucide/wheat_off.rb
1638
1646
  - lib/phlex-icons/lucide/whole_word.rb
1639
1647
  - lib/phlex-icons/lucide/wifi.rb
1648
+ - lib/phlex-icons/lucide/wifi_cog.rb
1640
1649
  - lib/phlex-icons/lucide/wifi_high.rb
1641
1650
  - lib/phlex-icons/lucide/wifi_low.rb
1642
1651
  - lib/phlex-icons/lucide/wifi_off.rb