phlex-icons 2.15.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: 6558004a1ef8fc4bbaeb55432a55d1d5df673bcbd90334edd09e2f33ca307bdc
4
- data.tar.gz: 617bc7453a6cdaf8657c6b1ac7c463ec5cdd2120bc9af77cd5b7aed2f9b2606c
3
+ metadata.gz: 3ea997cd075508e55d215efbe3c5a676260b2246f9522ede5d32c6702531b1b2
4
+ data.tar.gz: 7aeec0add8902d4e2009402c93af670335fee4a362e99f9ad5dd23612ef8e85f
5
5
  SHA512:
6
- metadata.gz: c8c5265077a47f9ec484b29c2624669e436c052b8309b939caaa694220476cf90139033e516d9ba1cf4cc3077508f072be4d3790fbebf59b41c00bdc5f9892a5
7
- data.tar.gz: 30851a5f40876c14454d49a809f4738e9b7b42e7bd54521dd9f692c02f411b252381aa2a2c8fe222d4e61bc0dc0a97244f34af309795bb72bd31eee7f0b5a723
6
+ metadata.gz: 4d72a7527839e74ef5f5dfa30ccd0a4a7d7788536460c434c08309ff493893012bddddcd2aff7e51b0b2614782b1d539a82d5359083dddcc05ba0107c2d3cd2d
7
+ data.tar.gz: de557307223c400fab79e2daaf66cacbdff60fb6d6dc406c0bf2a54f2e2f7ed2f2075a46c07f8658b5df1600c191136d5209eebee37af585e9affe7991f17dd3
@@ -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
@@ -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.484.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.15.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
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.15.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-04-01 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
@@ -4028,6 +4028,9 @@ files:
4028
4028
  - lib/phlex-icons/lucide/banana.rb
4029
4029
  - lib/phlex-icons/lucide/bandage.rb
4030
4030
  - lib/phlex-icons/lucide/banknote.rb
4031
+ - lib/phlex-icons/lucide/banknote_arrow_down.rb
4032
+ - lib/phlex-icons/lucide/banknote_arrow_up.rb
4033
+ - lib/phlex-icons/lucide/banknote_x.rb
4031
4034
  - lib/phlex-icons/lucide/barcode.rb
4032
4035
  - lib/phlex-icons/lucide/base.rb
4033
4036
  - lib/phlex-icons/lucide/baseline.rb
@@ -5179,6 +5182,7 @@ files:
5179
5182
  - lib/phlex-icons/lucide/spell_check.rb
5180
5183
  - lib/phlex-icons/lucide/spell_check_2.rb
5181
5184
  - lib/phlex-icons/lucide/spline.rb
5185
+ - lib/phlex-icons/lucide/spline_pointer.rb
5182
5186
  - lib/phlex-icons/lucide/split.rb
5183
5187
  - lib/phlex-icons/lucide/spray_can.rb
5184
5188
  - lib/phlex-icons/lucide/sprout.rb