phlex-icons-lucide 2.14.0 → 2.16.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: b892a612918b302e5e668b49ca05b87b0874bf9e672126862f52c8550ad5920e
4
- data.tar.gz: c630f76db2a6f4b4f7ed441799c5556e4cf7ec729b7342f14bcd1884900197b3
3
+ metadata.gz: 6812badd1d2c2672030e642641149e58ee3c4447b21ce6155b4b1077db2cf31b
4
+ data.tar.gz: 778593fd76bba0bfcfaaef0af2998783ab2b6a0f9ffb0d214a86d24ca167bb25
5
5
  SHA512:
6
- metadata.gz: 4b1e9e8463f32816826da3c951e6f04acc9b9268a1ad057ccaf81d7f11211fa41d2ced4a9688717b8dd6be7b1e64c6781927521b97bf47b72373697ae8ecec87
7
- data.tar.gz: 55bfe21fbc8723b623ad79b43d4bcb4c590a9a659dee4c4be0e3883dc58ac5f41a1f9605674d5fba49832ac2d09af19dff48d2bfea613c16f22a4121c1563059
6
+ metadata.gz: 7e21167802ba580ef27caa7e5845f41634b19c1e878ba0db7f16d4ffe2c62d60b777f059e71b4924ea8919c15db27af76c5c7142032cf4c18171d9cbc9ca847e
7
+ data.tar.gz: edd19de87cf05576a7d67f1bb12e33d2662a9bad42b47fb84fba23afd3abddb4c8c0f0237cb21465a059d8e7ab9fd99ecfb651171b2153cf68b685ec3682f685
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class BanknoteArrowDown < 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 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5')
18
+ s.path(d: 'm16 19 3 3 3-3')
19
+ s.path(d: 'M18 12h.01')
20
+ s.path(d: 'M19 16v6')
21
+ s.path(d: 'M6 12h.01')
22
+ s.circle(cx: '12', cy: '12', r: '2')
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class BanknoteArrowUp < 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 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5')
18
+ s.path(d: 'M18 12h.01')
19
+ s.path(d: 'M19 22v-6')
20
+ s.path(d: 'm22 19-3-3-3 3')
21
+ s.path(d: 'M6 12h.01')
22
+ s.circle(cx: '12', cy: '12', r: '2')
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class BanknoteX < 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: 'M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5')
18
+ s.path(d: 'm17 17 5 5')
19
+ s.path(d: 'M18 12h.01')
20
+ s.path(d: 'm22 17-5 5')
21
+ s.path(d: 'M6 12h.01')
22
+ s.circle(cx: '12', cy: '12', r: '2')
23
+ end
24
+ end
25
+ end
26
+ end
27
+ 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 Candy < Base
@@ -14,17 +15,23 @@ module PhlexIcons
14
15
  stroke_linecap: 'round',
15
16
  stroke_linejoin: 'round'
16
17
  ) do |s|
17
- s.path(d: 'm9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z')
18
- s.path(d: 'M14 6.5v10')
19
- s.path(d: 'M10 7.5v10')
18
+ s.path(d: 'M10 7v10.9')
19
+ s.path(d: 'M14 6.1V17')
20
20
  s.path(
21
- d: 'm16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1'
21
+ d:
22
+ 'M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4'
22
23
  )
23
24
  s.path(
24
- d: 'm8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1'
25
+ d:
26
+ 'M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07'
27
+ )
28
+ s.path(
29
+ d:
30
+ 'M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4'
25
31
  )
26
32
  end
27
33
  end
28
34
  end
29
35
  end
30
36
  end
37
+ # 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 CandyOff < Base
@@ -14,24 +15,24 @@ module PhlexIcons
14
15
  stroke_linecap: 'round',
15
16
  stroke_linejoin: 'round'
16
17
  ) do |s|
17
- s.path(d: 'm8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1')
18
+ s.path(d: 'M10 10v7.9')
19
+ s.path(d: 'M11.802 6.145a5 5 0 0 1 6.053 6.053')
20
+ s.path(d: 'M14 6.1v2.243')
18
21
  s.path(
19
- d: 'M11.843 6.187A4.947 4.947 0 0 1 16.5 7.5a4.947 4.947 0 0 1 1.313 4.657'
22
+ d: 'm15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965'
20
23
  )
21
- s.path(d: 'M14 16.5V14')
22
- s.path(d: 'M14 6.5v1.843')
23
- s.path(d: 'M10 10v7.5')
24
24
  s.path(
25
25
  d:
26
- 'm16 7 1-5 1.367.683A3 3 0 0 0 19.708 3H21v1.292a3 3 0 0 0 .317 1.341L22 7l-5 1'
26
+ 'M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4'
27
27
  )
28
+ s.path(d: 'm2 2 20 20')
28
29
  s.path(
29
30
  d:
30
- 'm8 17-1 5-1.367-.683A3 3 0 0 0 4.292 21H3v-1.292a3 3 0 0 0-.317-1.341L2 17l5-1'
31
+ 'M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4'
31
32
  )
32
- s.line(x1: '2', x2: '22', y1: '2', y2: '22')
33
33
  end
34
34
  end
35
35
  end
36
36
  end
37
37
  end
38
+ # rubocop:enable Layout/LineLength
@@ -20,7 +20,7 @@ module PhlexIcons
20
20
  d:
21
21
  'M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2'
22
22
  )
23
- s.rect(x: '10', y: '6', width: '8', height: '4', rx: '1')
23
+ s.rect(width: '8', height: '4', x: '10', y: '6', rx: '1')
24
24
  end
25
25
  end
26
26
  end
@@ -19,7 +19,7 @@ module PhlexIcons
19
19
  s.path(d: 'M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1')
20
20
  s.path(
21
21
  d:
22
- 'M14 2a3.276 3.276 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8'
22
+ 'M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8'
23
23
  )
24
24
  s.path(d: 'M14 8a8.5 8.5 0 0 1 0 8')
25
25
  s.path(d: 'M16 16c2 0 4.5-4 4-6')
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class SplinePointer < 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
+ 'M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z'
21
+ )
22
+ s.path(d: 'M5 17A12 12 0 0 1 17 5')
23
+ s.circle(cx: '19', cy: '5', r: '2')
24
+ s.circle(cx: '5', cy: '19', r: '2')
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
30
+ # rubocop:enable Layout/LineLength
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.483.0'
5
+ VERSION = '0.487.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -142,6 +142,9 @@ module PhlexIcons
142
142
  autoload :Banana, 'phlex-icons/lucide/banana'
143
143
  autoload :Bandage, 'phlex-icons/lucide/bandage'
144
144
  autoload :Banknote, 'phlex-icons/lucide/banknote'
145
+ autoload :BanknoteArrowDown, 'phlex-icons/lucide/banknote_arrow_down'
146
+ autoload :BanknoteArrowUp, 'phlex-icons/lucide/banknote_arrow_up'
147
+ autoload :BanknoteX, 'phlex-icons/lucide/banknote_x'
145
148
  autoload :Barcode, 'phlex-icons/lucide/barcode'
146
149
  autoload :Baseline, 'phlex-icons/lucide/baseline'
147
150
  autoload :Bath, 'phlex-icons/lucide/bath'
@@ -1292,6 +1295,7 @@ module PhlexIcons
1292
1295
  autoload :SpellCheck, 'phlex-icons/lucide/spell_check'
1293
1296
  autoload :SpellCheck2, 'phlex-icons/lucide/spell_check_2'
1294
1297
  autoload :Spline, 'phlex-icons/lucide/spline'
1298
+ autoload :SplinePointer, 'phlex-icons/lucide/spline_pointer'
1295
1299
  autoload :Split, 'phlex-icons/lucide/split'
1296
1300
  autoload :SprayCan, 'phlex-icons/lucide/spray_can'
1297
1301
  autoload :Sprout, 'phlex-icons/lucide/sprout'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.14.0'
4
+ VERSION = '2.16.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.14.0
4
+ version: 2.16.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-03-23 00:00:00.000000000 Z
11
+ date: 2025-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -185,6 +185,9 @@ files:
185
185
  - lib/phlex-icons/lucide/banana.rb
186
186
  - lib/phlex-icons/lucide/bandage.rb
187
187
  - lib/phlex-icons/lucide/banknote.rb
188
+ - lib/phlex-icons/lucide/banknote_arrow_down.rb
189
+ - lib/phlex-icons/lucide/banknote_arrow_up.rb
190
+ - lib/phlex-icons/lucide/banknote_x.rb
188
191
  - lib/phlex-icons/lucide/barcode.rb
189
192
  - lib/phlex-icons/lucide/base.rb
190
193
  - lib/phlex-icons/lucide/baseline.rb
@@ -1336,6 +1339,7 @@ files:
1336
1339
  - lib/phlex-icons/lucide/spell_check.rb
1337
1340
  - lib/phlex-icons/lucide/spell_check_2.rb
1338
1341
  - lib/phlex-icons/lucide/spline.rb
1342
+ - lib/phlex-icons/lucide/spline_pointer.rb
1339
1343
  - lib/phlex-icons/lucide/split.rb
1340
1344
  - lib/phlex-icons/lucide/spray_can.rb
1341
1345
  - lib/phlex-icons/lucide/sprout.rb