phlex-icons 2.37.0 → 2.38.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: 84fe4005d40d25f049d819ca7e19104cc8c3fb97d15791d2d0b72bb579152131
4
- data.tar.gz: a04e4e126956ab4ba7a23c8d23cbf6175273ef1167d11aeb858bbfeb0a1cc631
3
+ metadata.gz: 98fe92751c02279886fc400f98d800db2580741479a8facbbe58929bd1440b3e
4
+ data.tar.gz: ce8aa23d799f06e791931288c50508f8b44dbf222a6de48bf6d58b65e534052c
5
5
  SHA512:
6
- metadata.gz: 94aec2f508801ffda7b3ebf4946689f5ab90819c8ecf0d4b2fe9bf0114d3b920871613a46652b3d0d6b15af88ac4e128f3fba142fa67b524452476f35bf20399
7
- data.tar.gz: b820b05423628ffd09319693e8c59a1f34edcc976c1629272f11f79fdb75ec9307dfb2bf3dc753b1216c3c37f7e4ec4d8fbc153dd4967ab0ef995b109b282916
6
+ metadata.gz: 9da50969dc138086af67f2cd0ae7f8a9697e4dc33f5bcc3fbf31022dc73e0d5faf68e43795522f763ffbaf426e74853dece7b005eea01038e7bdd2f89be7f4a6
7
+ data.tar.gz: 5c94a9241ce520851e1fa770d6d88943289fc245bbc3964c8375e34c0d417661fb581c4bc007b6eb1e09cd30da144fdf9f7a363b8662e73a5ad442bc2e0c47d5
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class EvCharger < 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: 'M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5'
19
+ )
20
+ s.path(d: 'M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16')
21
+ s.path(d: 'M2 21h13')
22
+ s.path(d: 'M3 7h11')
23
+ s.path(d: 'm9 11-2 3h3l-2 3')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ 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 Flame < Base
@@ -17,11 +16,10 @@ module PhlexIcons
17
16
  ) do |s|
18
17
  s.path(
19
18
  d:
20
- 'M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z'
19
+ 'M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4'
21
20
  )
22
21
  end
23
22
  end
24
23
  end
25
24
  end
26
25
  end
27
- # rubocop:enable Layout/LineLength
@@ -14,13 +14,12 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.line(x1: '3', x2: '15', y1: '22', y2: '22')
18
- s.line(x1: '4', x2: '14', y1: '9', y2: '9')
19
- s.path(d: 'M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18')
20
17
  s.path(
21
- d:
22
- 'M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5'
18
+ d: 'M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5'
23
19
  )
20
+ s.path(d: 'M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16')
21
+ s.path(d: 'M2 21h13')
22
+ s.path(d: 'M3 9h11')
24
23
  end
25
24
  end
26
25
  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 House < Base
@@ -18,11 +17,10 @@ module PhlexIcons
18
17
  s.path(d: 'M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8')
19
18
  s.path(
20
19
  d:
21
- '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'
20
+ 'M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'
22
21
  )
23
22
  end
24
23
  end
25
24
  end
26
25
  end
27
26
  end
28
- # rubocop:enable Layout/LineLength
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class HouseHeart < 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
+ 'M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z'
20
+ )
21
+ s.path(
22
+ d:
23
+ 'M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'
24
+ )
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -22,7 +22,7 @@ module PhlexIcons
22
22
  )
23
23
  s.path(
24
24
  d:
25
- 'M8.5 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 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2'
25
+ 'M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2'
26
26
  )
27
27
  end
28
28
  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 HousePlus < Base
@@ -17,9 +16,9 @@ module PhlexIcons
17
16
  ) do |s|
18
17
  s.path(
19
18
  d:
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'
19
+ 'M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35'
21
20
  )
22
- s.path(d: 'M14.959 12.717A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8')
21
+ s.path(d: 'M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8')
23
22
  s.path(d: 'M15 18h6')
24
23
  s.path(d: 'M18 15v6')
25
24
  end
@@ -27,4 +26,3 @@ module PhlexIcons
27
26
  end
28
27
  end
29
28
  end
30
- # 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 HouseWifi < Base
@@ -19,7 +18,7 @@ module PhlexIcons
19
18
  s.path(d: 'M12 17h.01')
20
19
  s.path(
21
20
  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'
21
+ 'M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'
23
22
  )
24
23
  s.path(d: 'M7 10.754a8 8 0 0 1 10 0')
25
24
  end
@@ -27,4 +26,3 @@ module PhlexIcons
27
26
  end
28
27
  end
29
28
  end
30
- # rubocop:enable Layout/LineLength
@@ -14,8 +14,11 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.rect(width: '18', height: '18', x: '3', y: '3', rx: '2')
18
- s.path(d: 'M8 16V8l4 4 4-4v8')
17
+ s.path(
18
+ d:
19
+ 'M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16'
20
+ )
21
+ s.rect(x: '3', y: '3', width: '18', height: '18', rx: '2')
19
22
  end
20
23
  end
21
24
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.542.0'
5
+ VERSION = '0.544.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -564,6 +564,7 @@ module PhlexIcons
564
564
  autoload :Eraser, 'phlex-icons/lucide/eraser'
565
565
  autoload :EthernetPort, 'phlex-icons/lucide/ethernet_port'
566
566
  autoload :Euro, 'phlex-icons/lucide/euro'
567
+ autoload :EvCharger, 'phlex-icons/lucide/ev_charger'
567
568
  autoload :Expand, 'phlex-icons/lucide/expand'
568
569
  autoload :ExternalLink, 'phlex-icons/lucide/external_link'
569
570
  autoload :Eye, 'phlex-icons/lucide/eye'
@@ -802,6 +803,7 @@ module PhlexIcons
802
803
  autoload :Hotel, 'phlex-icons/lucide/hotel'
803
804
  autoload :Hourglass, 'phlex-icons/lucide/hourglass'
804
805
  autoload :House, 'phlex-icons/lucide/house'
806
+ autoload :HouseHeart, 'phlex-icons/lucide/house_heart'
805
807
  autoload :HousePlug, 'phlex-icons/lucide/house_plug'
806
808
  autoload :HousePlus, 'phlex-icons/lucide/house_plus'
807
809
  autoload :HouseWifi, 'phlex-icons/lucide/house_wifi'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.37.0'
4
+ VERSION = '2.38.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phlex-icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.37.0
4
+ version: 2.38.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-09-05 00:00:00.000000000 Z
11
+ date: 2025-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -4481,6 +4481,7 @@ files:
4481
4481
  - lib/phlex-icons/lucide/eraser.rb
4482
4482
  - lib/phlex-icons/lucide/ethernet_port.rb
4483
4483
  - lib/phlex-icons/lucide/euro.rb
4484
+ - lib/phlex-icons/lucide/ev_charger.rb
4484
4485
  - lib/phlex-icons/lucide/expand.rb
4485
4486
  - lib/phlex-icons/lucide/external_link.rb
4486
4487
  - lib/phlex-icons/lucide/eye.rb
@@ -4719,6 +4720,7 @@ files:
4719
4720
  - lib/phlex-icons/lucide/hotel.rb
4720
4721
  - lib/phlex-icons/lucide/hourglass.rb
4721
4722
  - lib/phlex-icons/lucide/house.rb
4723
+ - lib/phlex-icons/lucide/house_heart.rb
4722
4724
  - lib/phlex-icons/lucide/house_plug.rb
4723
4725
  - lib/phlex-icons/lucide/house_plus.rb
4724
4726
  - lib/phlex-icons/lucide/house_wifi.rb