phlex-icons-lucide 2.24.0 → 2.25.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: 23f214fcad65b75cdecc091912bfde956c35e275bc9f49ed4fa3d219437a312a
4
- data.tar.gz: 73d41d3498b8747fb4478fc00f9398ea9f75c8eacba78cb097e55972d8ffd583
3
+ metadata.gz: cc165dbae20fe3063e8c63b27e4685de942bea8225039e9a498233a8d1a1560d
4
+ data.tar.gz: 130d3debd752984218c9d44041d377180defe31fd1a7707e85b3ddd0d66aa4fe
5
5
  SHA512:
6
- metadata.gz: 433afb194512f61c9c96b9077caf4bdb85a117e2daedb47b8be0f4b63e1f85fccb589b45c230999dac0ced4eedfc652ccb7ebc83cb16a8d1a23c25b4fef244d6
7
- data.tar.gz: ef1be436446040d86acd73d98b2bd8dc7d60d39e47412e44a78389aa85c1de84bb74402fb2b8ae32921d32379588e4b2966618ab37fb69a376de24fa160c5ff7
6
+ metadata.gz: fb7c1853d047e8b33606fd26f88703e7c5bec21b31bacc7b7cef296f99e47fec8a1aa4cb0cab5b87c1fe0c4216c281f117ec46a2b7fb1287923fbac3cb5aeb06
7
+ data.tar.gz: 064d2e13a2579d63e75562ecb2a3529cf7b22b7f1dd2a2b73458bfdcf70bcdb6ed043ff916dc26d57f7cd7f04f809bb1378c25d4dceddac5b09b354c96102219
@@ -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(d: 'M5 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z')
20
- s.path(d: 'M7 16.5 8 22l-3-1-3 1 1-5.5')
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.511.0'
5
+ VERSION = '0.513.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -289,6 +289,7 @@ module PhlexIcons
289
289
  autoload :CarFront, 'phlex-icons/lucide/car_front'
290
290
  autoload :CarTaxiFront, 'phlex-icons/lucide/car_taxi_front'
291
291
  autoload :Caravan, 'phlex-icons/lucide/caravan'
292
+ autoload :CardSim, 'phlex-icons/lucide/card_sim'
292
293
  autoload :Carrot, 'phlex-icons/lucide/carrot'
293
294
  autoload :CaseLower, 'phlex-icons/lucide/case_lower'
294
295
  autoload :CaseSensitive, 'phlex-icons/lucide/case_sensitive'
@@ -741,6 +742,7 @@ module PhlexIcons
741
742
  autoload :Grid2x2Check, 'phlex-icons/lucide/grid_2x2_check'
742
743
  autoload :Grid2x2Plus, 'phlex-icons/lucide/grid_2x2_plus'
743
744
  autoload :Grid2x2X, 'phlex-icons/lucide/grid_2x2_x'
745
+ autoload :Grid3x2, 'phlex-icons/lucide/grid_3x2'
744
746
  autoload :Grid3x3, 'phlex-icons/lucide/grid_3x3'
745
747
  autoload :Grip, 'phlex-icons/lucide/grip'
746
748
  autoload :GripHorizontal, 'phlex-icons/lucide/grip_horizontal'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.24.0'
4
+ VERSION = '2.25.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.24.0
4
+ version: 2.25.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-05-31 00:00:00.000000000 Z
11
+ date: 2025-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -335,6 +335,7 @@ files:
335
335
  - lib/phlex-icons/lucide/car_front.rb
336
336
  - lib/phlex-icons/lucide/car_taxi_front.rb
337
337
  - lib/phlex-icons/lucide/caravan.rb
338
+ - lib/phlex-icons/lucide/card_sim.rb
338
339
  - lib/phlex-icons/lucide/carrot.rb
339
340
  - lib/phlex-icons/lucide/case_lower.rb
340
341
  - lib/phlex-icons/lucide/case_sensitive.rb
@@ -787,6 +788,7 @@ files:
787
788
  - lib/phlex-icons/lucide/grid_2x2_check.rb
788
789
  - lib/phlex-icons/lucide/grid_2x2_plus.rb
789
790
  - lib/phlex-icons/lucide/grid_2x2_x.rb
791
+ - lib/phlex-icons/lucide/grid_3x2.rb
790
792
  - lib/phlex-icons/lucide/grid_3x3.rb
791
793
  - lib/phlex-icons/lucide/grip.rb
792
794
  - lib/phlex-icons/lucide/grip_horizontal.rb