phlex-icons-lucide 2.24.0 → 2.26.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/book_alert.rb +27 -0
- data/lib/phlex-icons/lucide/card_sim.rb +30 -0
- data/lib/phlex-icons/lucide/file_badge.rb +8 -3
- data/lib/phlex-icons/lucide/grid_3x2.rb +25 -0
- data/lib/phlex-icons/lucide/house_plus.rb +6 -4
- data/lib/phlex-icons/lucide/radiation.rb +3 -3
- data/lib/phlex-icons/lucide/settings_2.rb +1 -1
- data/lib/phlex-icons/lucide/trophy.rb +5 -5
- data/lib/phlex-icons/lucide.rb +4 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80c601bcd390c895f7a6af5d5a005a34fc434108a3ecce5dc160d56823ed388d
|
4
|
+
data.tar.gz: 830f2b30cf7ebaf4e2b4024ad1dcabf996061843e1668023c49b9c524b2b3b96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d9e647947b1638ee6781cb63ca51e9fbd0242c1d5783a6a284677b9ced9ad203ed96be8270e3924c4083b61733c081cd5d787d1f21c21bd401d015ab465491a
|
7
|
+
data.tar.gz: 83dcea59d2e09c52b99de697e1a627d3cc792d75338af8fca30e4cd212245f0e2451b69667f97ab7154d8fa7fbe6ab024d5502472c871852975375c2de0a5a08
|
@@ -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
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class CardSim < 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: 'M12 14v4')
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z'
|
22
|
+
)
|
23
|
+
s.path(d: 'M8 14h8')
|
24
|
+
s.rect(x: '8', y: '10', width: '8', height: '8', rx: '1')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
# rubocop:enable Layout/LineLength
|
@@ -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 FileBadge < Base
|
@@ -14,12 +15,16 @@ module PhlexIcons
|
|
14
15
|
stroke_linecap: 'round',
|
15
16
|
stroke_linejoin: 'round'
|
16
17
|
) do |s|
|
17
|
-
s.path(d: 'M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3')
|
18
|
+
s.path(d: 'M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.072')
|
18
19
|
s.path(d: 'M14 2v4a2 2 0 0 0 2 2h4')
|
19
|
-
s.path(
|
20
|
-
|
20
|
+
s.path(
|
21
|
+
d:
|
22
|
+
'm6.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88'
|
23
|
+
)
|
24
|
+
s.circle(cx: '5', cy: '14', r: '3')
|
21
25
|
end
|
22
26
|
end
|
23
27
|
end
|
24
28
|
end
|
25
29
|
end
|
30
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class Grid3x2 < 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: 'M15 3v18')
|
18
|
+
s.path(d: 'M3 12h18')
|
19
|
+
s.path(d: 'M9 3v18')
|
20
|
+
s.rect(x: '3', y: '3', width: '18', height: '18', rx: '2')
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -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
|
-
'
|
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: '
|
22
|
-
s.path(d: 'M15
|
23
|
-
s.path(d: 'M18
|
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
|
@@ -18,15 +18,15 @@ module PhlexIcons
|
|
18
18
|
s.path(d: 'M12 12h.01')
|
19
19
|
s.path(
|
20
20
|
d:
|
21
|
-
'
|
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
|
-
'
|
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
|
-
'
|
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,12 +14,12 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: '
|
18
|
-
s.path(d: '
|
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: '
|
21
|
-
s.path(d: '
|
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
|
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.514.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -195,6 +195,7 @@ module PhlexIcons
|
|
195
195
|
autoload :Bone, 'phlex-icons/lucide/bone'
|
196
196
|
autoload :Book, 'phlex-icons/lucide/book'
|
197
197
|
autoload :BookA, 'phlex-icons/lucide/book_a'
|
198
|
+
autoload :BookAlert, 'phlex-icons/lucide/book_alert'
|
198
199
|
autoload :BookAudio, 'phlex-icons/lucide/book_audio'
|
199
200
|
autoload :BookCheck, 'phlex-icons/lucide/book_check'
|
200
201
|
autoload :BookCopy, 'phlex-icons/lucide/book_copy'
|
@@ -289,6 +290,7 @@ module PhlexIcons
|
|
289
290
|
autoload :CarFront, 'phlex-icons/lucide/car_front'
|
290
291
|
autoload :CarTaxiFront, 'phlex-icons/lucide/car_taxi_front'
|
291
292
|
autoload :Caravan, 'phlex-icons/lucide/caravan'
|
293
|
+
autoload :CardSim, 'phlex-icons/lucide/card_sim'
|
292
294
|
autoload :Carrot, 'phlex-icons/lucide/carrot'
|
293
295
|
autoload :CaseLower, 'phlex-icons/lucide/case_lower'
|
294
296
|
autoload :CaseSensitive, 'phlex-icons/lucide/case_sensitive'
|
@@ -741,6 +743,7 @@ module PhlexIcons
|
|
741
743
|
autoload :Grid2x2Check, 'phlex-icons/lucide/grid_2x2_check'
|
742
744
|
autoload :Grid2x2Plus, 'phlex-icons/lucide/grid_2x2_plus'
|
743
745
|
autoload :Grid2x2X, 'phlex-icons/lucide/grid_2x2_x'
|
746
|
+
autoload :Grid3x2, 'phlex-icons/lucide/grid_3x2'
|
744
747
|
autoload :Grid3x3, 'phlex-icons/lucide/grid_3x3'
|
745
748
|
autoload :Grip, 'phlex-icons/lucide/grip'
|
746
749
|
autoload :GripHorizontal, 'phlex-icons/lucide/grip_horizontal'
|
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.26.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-
|
11
|
+
date: 2025-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -241,6 +241,7 @@ files:
|
|
241
241
|
- lib/phlex-icons/lucide/bone.rb
|
242
242
|
- lib/phlex-icons/lucide/book.rb
|
243
243
|
- lib/phlex-icons/lucide/book_a.rb
|
244
|
+
- lib/phlex-icons/lucide/book_alert.rb
|
244
245
|
- lib/phlex-icons/lucide/book_audio.rb
|
245
246
|
- lib/phlex-icons/lucide/book_check.rb
|
246
247
|
- lib/phlex-icons/lucide/book_copy.rb
|
@@ -335,6 +336,7 @@ files:
|
|
335
336
|
- lib/phlex-icons/lucide/car_front.rb
|
336
337
|
- lib/phlex-icons/lucide/car_taxi_front.rb
|
337
338
|
- lib/phlex-icons/lucide/caravan.rb
|
339
|
+
- lib/phlex-icons/lucide/card_sim.rb
|
338
340
|
- lib/phlex-icons/lucide/carrot.rb
|
339
341
|
- lib/phlex-icons/lucide/case_lower.rb
|
340
342
|
- lib/phlex-icons/lucide/case_sensitive.rb
|
@@ -787,6 +789,7 @@ files:
|
|
787
789
|
- lib/phlex-icons/lucide/grid_2x2_check.rb
|
788
790
|
- lib/phlex-icons/lucide/grid_2x2_plus.rb
|
789
791
|
- lib/phlex-icons/lucide/grid_2x2_x.rb
|
792
|
+
- lib/phlex-icons/lucide/grid_3x2.rb
|
790
793
|
- lib/phlex-icons/lucide/grid_3x3.rb
|
791
794
|
- lib/phlex-icons/lucide/grip.rb
|
792
795
|
- lib/phlex-icons/lucide/grip_horizontal.rb
|