phlex-icons-lucide 2.6.0 → 2.8.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: 8f0aec7af7275c943cec92ea346bcacc562827ecd57ed83c4882d4fb875fd1ff
4
- data.tar.gz: 346f7db48f4ed173aadaab57bfe3a0d5ef2ac7f8c52a185b675daa646b703838
3
+ metadata.gz: 8cd330ba5f9314a32d77a74f2203994a5de405c62793b0d43d4c040a3806dd74
4
+ data.tar.gz: 9dc9f6b1ae58577b641a214c45b772c99d4daf7bee38440c8b495578e94782c6
5
5
  SHA512:
6
- metadata.gz: 97856bd9a6972e4ddaa0ad3269e0bf2249746041f9efd0379494e4d8db75e0a0fbc84891f59a38d9568f01ea4c5e0f962832ff6977c536dcca0995775d99ffbd
7
- data.tar.gz: 202e7c6715df4bebd3a52c96064ff3bc33c1ef7a96d9b77ece5379bda70b08f5bd776f070c40922b28640d6bfc2ee60fd5ac7a81d0305db31cf7c1b951fb9ca0
6
+ metadata.gz: 5b5c9a82bf714a937a1dec0cac346f61ddbb87b59cd56ec508bf5449b0d2079cec0b1f76783555258cdf97836e2a85cb80d428ea542e0dd93b761b4fa4dbebcb
7
+ data.tar.gz: 31c1f02f0bedf8b4e19155f759834f52a507f6ff0ae554282473169f805cdb87a02e8f586c93e19f7f017ccfcea4f3fd7bca8bc70b78607d3a88e61d4a833601
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class BatteryPlus < 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: 'M10 9v6')
18
+ s.path(d: 'M13.5 7H16a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2.5')
19
+ s.path(d: 'M22 11v2')
20
+ s.path(d: 'M6.5 17H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2.5')
21
+ s.path(d: 'M7 12h6')
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -14,10 +14,14 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'm21 21-6-6m6 6v-4.8m0 4.8h-4.8')
18
- s.path(d: 'M3 16.2V21m0 0h4.8M3 21l6-6')
19
- s.path(d: 'M21 7.8V3m0 0h-4.8M21 3l-6 6')
20
- s.path(d: 'M3 7.8V3m0 0h4.8M3 3l6 6')
17
+ s.path(d: 'm15 15 6 6')
18
+ s.path(d: 'm15 9 6-6')
19
+ s.path(d: 'M21 16.2V21h-4.8')
20
+ s.path(d: 'M21 7.8V3h-4.8')
21
+ s.path(d: 'M3 16.2V21h4.8')
22
+ s.path(d: 'm3 21 6-6')
23
+ s.path(d: 'M3 7.8V3h4.8')
24
+ s.path(d: 'M9 9 3 3')
21
25
  end
22
26
  end
23
27
  end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class HouseWifi < 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: 'M9.5 13.866a4 4 0 0 1 5 .01')
19
+ s.path(d: 'M12 17h.01')
20
+ s.path(
21
+ d:
22
+ 'M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'
23
+ )
24
+ s.path(d: 'M7 10.754a8 8 0 0 1 10 0')
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
30
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class MapPlus < 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
+ 'm11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12'
21
+ )
22
+ s.path(d: 'M15 5.764V12')
23
+ s.path(d: 'M18 15v6')
24
+ s.path(d: 'M21 18h-6')
25
+ s.path(d: 'M9 3.236v15')
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
31
+ # rubocop:enable Layout/LineLength
@@ -20,7 +20,7 @@ module PhlexIcons
20
20
  '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'
21
21
  )
22
22
  s.path(d: 'M12 22V12')
23
- s.path(d: 'm3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7')
23
+ s.polyline(points: '3.29 7 12 12 20.71 7')
24
24
  s.path(d: 'm7.5 4.27 9 5.15')
25
25
  end
26
26
  end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Metrics/MethodLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class TriangleDashed < 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.17 4.193a2 2 0 0 1 3.666.013')
19
+ s.path(d: 'M14 21h2')
20
+ s.path(d: 'm15.874 7.743 1 1.732')
21
+ s.path(d: 'm18.849 12.952 1 1.732')
22
+ s.path(d: 'M21.824 18.18a2 2 0 0 1-1.835 2.824')
23
+ s.path(d: 'M4.024 21a2 2 0 0 1-1.839-2.839')
24
+ s.path(d: 'm5.136 12.952-1 1.732')
25
+ s.path(d: 'M8 21h2')
26
+ s.path(d: 'm8.102 7.743-1 1.732')
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
32
+ # 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.469.0'
5
+ VERSION = '0.474.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -150,6 +150,7 @@ module PhlexIcons
150
150
  autoload :BatteryFull, 'phlex-icons/lucide/battery_full'
151
151
  autoload :BatteryLow, 'phlex-icons/lucide/battery_low'
152
152
  autoload :BatteryMedium, 'phlex-icons/lucide/battery_medium'
153
+ autoload :BatteryPlus, 'phlex-icons/lucide/battery_plus'
153
154
  autoload :BatteryWarning, 'phlex-icons/lucide/battery_warning'
154
155
  autoload :Beaker, 'phlex-icons/lucide/beaker'
155
156
  autoload :Bean, 'phlex-icons/lucide/bean'
@@ -770,6 +771,7 @@ module PhlexIcons
770
771
  autoload :House, 'phlex-icons/lucide/house'
771
772
  autoload :HousePlug, 'phlex-icons/lucide/house_plug'
772
773
  autoload :HousePlus, 'phlex-icons/lucide/house_plus'
774
+ autoload :HouseWifi, 'phlex-icons/lucide/house_wifi'
773
775
  autoload :IceCreamBowl, 'phlex-icons/lucide/ice_cream_bowl'
774
776
  autoload :IceCreamCone, 'phlex-icons/lucide/ice_cream_cone'
775
777
  autoload :IdCard, 'phlex-icons/lucide/id_card'
@@ -897,6 +899,7 @@ module PhlexIcons
897
899
  autoload :MapPinX, 'phlex-icons/lucide/map_pin_x'
898
900
  autoload :MapPinXInside, 'phlex-icons/lucide/map_pin_x_inside'
899
901
  autoload :MapPinned, 'phlex-icons/lucide/map_pinned'
902
+ autoload :MapPlus, 'phlex-icons/lucide/map_plus'
900
903
  autoload :Martini, 'phlex-icons/lucide/martini'
901
904
  autoload :Maximize, 'phlex-icons/lucide/maximize'
902
905
  autoload :Maximize2, 'phlex-icons/lucide/maximize_2'
@@ -1451,6 +1454,7 @@ module PhlexIcons
1451
1454
  autoload :TrendingUpDown, 'phlex-icons/lucide/trending_up_down'
1452
1455
  autoload :Triangle, 'phlex-icons/lucide/triangle'
1453
1456
  autoload :TriangleAlert, 'phlex-icons/lucide/triangle_alert'
1457
+ autoload :TriangleDashed, 'phlex-icons/lucide/triangle_dashed'
1454
1458
  autoload :TriangleRight, 'phlex-icons/lucide/triangle_right'
1455
1459
  autoload :Trophy, 'phlex-icons/lucide/trophy'
1456
1460
  autoload :Truck, 'phlex-icons/lucide/truck'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.6.0'
4
+ VERSION = '2.8.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.6.0
4
+ version: 2.8.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-01-12 00:00:00.000000000 Z
11
+ date: 2025-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -194,6 +194,7 @@ files:
194
194
  - lib/phlex-icons/lucide/battery_full.rb
195
195
  - lib/phlex-icons/lucide/battery_low.rb
196
196
  - lib/phlex-icons/lucide/battery_medium.rb
197
+ - lib/phlex-icons/lucide/battery_plus.rb
197
198
  - lib/phlex-icons/lucide/battery_warning.rb
198
199
  - lib/phlex-icons/lucide/beaker.rb
199
200
  - lib/phlex-icons/lucide/bean.rb
@@ -814,6 +815,7 @@ files:
814
815
  - lib/phlex-icons/lucide/house.rb
815
816
  - lib/phlex-icons/lucide/house_plug.rb
816
817
  - lib/phlex-icons/lucide/house_plus.rb
818
+ - lib/phlex-icons/lucide/house_wifi.rb
817
819
  - lib/phlex-icons/lucide/ice_cream_bowl.rb
818
820
  - lib/phlex-icons/lucide/ice_cream_cone.rb
819
821
  - lib/phlex-icons/lucide/id_card.rb
@@ -941,6 +943,7 @@ files:
941
943
  - lib/phlex-icons/lucide/map_pin_x.rb
942
944
  - lib/phlex-icons/lucide/map_pin_x_inside.rb
943
945
  - lib/phlex-icons/lucide/map_pinned.rb
946
+ - lib/phlex-icons/lucide/map_plus.rb
944
947
  - lib/phlex-icons/lucide/martini.rb
945
948
  - lib/phlex-icons/lucide/maximize.rb
946
949
  - lib/phlex-icons/lucide/maximize_2.rb
@@ -1495,6 +1498,7 @@ files:
1495
1498
  - lib/phlex-icons/lucide/trending_up_down.rb
1496
1499
  - lib/phlex-icons/lucide/triangle.rb
1497
1500
  - lib/phlex-icons/lucide/triangle_alert.rb
1501
+ - lib/phlex-icons/lucide/triangle_dashed.rb
1498
1502
  - lib/phlex-icons/lucide/triangle_right.rb
1499
1503
  - lib/phlex-icons/lucide/trophy.rb
1500
1504
  - lib/phlex-icons/lucide/truck.rb