phlex-icons-lucide 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 +4 -4
- data/lib/phlex-icons/lucide/ev_charger.rb +28 -0
- data/lib/phlex-icons/lucide/flame.rb +1 -3
- data/lib/phlex-icons/lucide/fuel.rb +4 -5
- data/lib/phlex-icons/lucide/house.rb +1 -3
- data/lib/phlex-icons/lucide/house_heart.rb +29 -0
- data/lib/phlex-icons/lucide/house_plug.rb +1 -1
- data/lib/phlex-icons/lucide/house_plus.rb +2 -4
- data/lib/phlex-icons/lucide/house_wifi.rb +1 -3
- data/lib/phlex-icons/lucide/square_m.rb +5 -2
- data/lib/phlex-icons/lucide.rb +3 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca69eb692394c0ab6f53ef55d922b31d6325bb461d94548efbbedf60814ea2ad
|
4
|
+
data.tar.gz: 0cb02f4c78383c8f8bf5d777e400ec1f81067f0eefd8a2d6641d1bcc607d8842
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bb55bccdb9b073c6f93b3bf004495e3d33db1f8b5ee7464b09543ddf99734faeb53091d53e3bd514fee3dc8681bcadb6ee8dc25e1290688a61ceb7aad4ac40d
|
7
|
+
data.tar.gz: f5bb4f0de5046b00b68835c199ff55aa80865adcd811c82810fa2bea3b347f3b577e188c275a8ae5bfa1843c7048a53b2957cbfc061d6442d5b7d0863ae5b1b9
|
@@ -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
|
-
'
|
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-
|
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-
|
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.
|
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.
|
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-
|
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.
|
18
|
-
|
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
|
data/lib/phlex-icons/lucide.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module PhlexIcons
|
4
4
|
module Lucide # rubocop:disable Metrics/ModuleLength
|
5
|
-
VERSION = '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'
|
data/lib/phlex-icons/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2025-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -610,6 +610,7 @@ files:
|
|
610
610
|
- lib/phlex-icons/lucide/eraser.rb
|
611
611
|
- lib/phlex-icons/lucide/ethernet_port.rb
|
612
612
|
- lib/phlex-icons/lucide/euro.rb
|
613
|
+
- lib/phlex-icons/lucide/ev_charger.rb
|
613
614
|
- lib/phlex-icons/lucide/expand.rb
|
614
615
|
- lib/phlex-icons/lucide/external_link.rb
|
615
616
|
- lib/phlex-icons/lucide/eye.rb
|
@@ -848,6 +849,7 @@ files:
|
|
848
849
|
- lib/phlex-icons/lucide/hotel.rb
|
849
850
|
- lib/phlex-icons/lucide/hourglass.rb
|
850
851
|
- lib/phlex-icons/lucide/house.rb
|
852
|
+
- lib/phlex-icons/lucide/house_heart.rb
|
851
853
|
- lib/phlex-icons/lucide/house_plug.rb
|
852
854
|
- lib/phlex-icons/lucide/house_plus.rb
|
853
855
|
- lib/phlex-icons/lucide/house_wifi.rb
|