phlex-icons 2.46.0 → 2.48.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: 19706b7cb9b192396451c03cd190293423d26e6096b31712f92303a66394aa53
4
- data.tar.gz: 6fc098d5a6ce549a904c0fb5b4e5007cb826b67e23b355531697da0db7b0eed7
3
+ metadata.gz: 49b2b1a02f0e1454ec07bdee7c41e91347a4a05c6cc7f641f004fe2b6d7cf016
4
+ data.tar.gz: ed16bdee463899cf1fe62dfe07c8aef039d9032d43c363bcb927abf45ad6217d
5
5
  SHA512:
6
- metadata.gz: 30453ac1a5ffe8b9e40f547377686e2c19151df443062151d2bd9a892f03313c210e2eaa6ea992a4b25ed37ff8401e61188d8da3ffbb1e1d74eed69948c48af2
7
- data.tar.gz: 25d73825cc9ed03555a3cf12aea1dd8bfecceaa6835a9adbb0862899d903a386aeb47f2dafc375fff7c92f9fb00deab86ae557bb42a7a9d6d1ddebc21a07011a
6
+ metadata.gz: ebe5219ebbdefa4ea448e9c0e887bada632ae55f109b29001f4226a04cccaf2210823ff6a4a7fc9fb4318e9dee9e68ff3862d0df98f62fda25a1aaa1d56b8a1b
7
+ data.tar.gz: a34536392e37d6d45c8a05b241f5945f415c09261083015c480260accc7ead5a461df0b86fa2bc6e6203728bb8f68cb20b39ae9fef99d85b4f65b355be9f5e98
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class BookSearch < 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: 'M11 22H5.5a1 1 0 0 1 0-5h4.501')
18
+ s.path(d: 'm21 22-1.879-1.878')
19
+ s.path(d: 'M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8')
20
+ s.circle(cx: '17', cy: '18', r: '3')
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Form < 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: 'M4 14h6')
18
+ s.path(d: 'M4 2h10')
19
+ s.rect(x: '4', y: '18', width: '16', height: '4', rx: '1')
20
+ s.rect(x: '4', y: '6', width: '16', height: '4', rx: '1')
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -15,9 +15,11 @@ module PhlexIcons
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
17
  s.path(d: 'M12 22v-5')
18
- s.path(d: 'M9 8V2')
19
18
  s.path(d: 'M15 8V2')
20
- s.path(d: 'M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z')
19
+ s.path(
20
+ d: 'M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z'
21
+ )
22
+ s.path(d: 'M9 8V2')
21
23
  end
22
24
  end
23
25
  end
@@ -14,11 +14,11 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'm16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z')
18
- s.path(d: 'm2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z')
19
- s.path(d: 'M7 21h10')
20
17
  s.path(d: 'M12 3v18')
21
- s.path(d: 'M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2')
18
+ s.path(d: 'm19 8 3 8a5 5 0 0 1-6 0zV7')
19
+ s.path(d: 'M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1')
20
+ s.path(d: 'm5 8 3 8a5 5 0 0 1-6 0zV7')
21
+ s.path(d: 'M7 21h10')
22
22
  end
23
23
  end
24
24
  end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Scooter < 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: 'M21 4h-3.5l2 11.05')
18
+ s.path(
19
+ d: 'M6.95 17h5.142c.523 0 .95-.406 1.063-.916a6.5 6.5 0 0 1 5.345-5.009'
20
+ )
21
+ s.circle(cx: '19.5', cy: '17.5', r: '2.5')
22
+ s.circle(cx: '4.5', cy: '17.5', r: '2.5')
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 Metrics/MethodLength
3
4
  module PhlexIcons
4
5
  module Lucide
5
6
  class SquareBottomDashedScissors < Base
@@ -14,18 +15,23 @@ module PhlexIcons
14
15
  stroke_linecap: 'round',
15
16
  stroke_linejoin: 'round'
16
17
  ) do |s|
17
- s.path(
18
- d: 'M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2'
19
- )
20
- s.path(d: 'M10 22H8')
21
- s.path(d: 'M16 22h-2')
22
- s.circle(cx: '8', cy: '8', r: '2')
23
- s.path(d: 'M9.414 9.414 12 12')
24
- s.path(d: 'M14.8 14.8 18 18')
25
- s.circle(cx: '8', cy: '16', r: '2')
26
- s.path(d: 'm18 6-8.586 8.586')
18
+ s.line(x1: '5', y1: '3', x2: '19', y2: '3')
19
+ s.line(x1: '3', y1: '5', x2: '3', y2: '19')
20
+ s.line(x1: '21', y1: '5', x2: '21', y2: '19')
21
+ s.line(x1: '9', y1: '21', x2: '10', y2: '21')
22
+ s.line(x1: '14', y1: '21', x2: '15', y2: '21')
23
+ s.path(d: 'M 3 5 A2 2 0 0 1 5 3')
24
+ s.path(d: 'M 19 3 A2 2 0 0 1 21 5')
25
+ s.path(d: 'M 5 21 A2 2 0 0 1 3 19')
26
+ s.path(d: 'M 21 19 A2 2 0 0 1 19 21')
27
+ s.circle(cx: '8.5', cy: '8.5', r: '1.5')
28
+ s.line(x1: '9.56066', y1: '9.56066', x2: '12', y2: '12')
29
+ s.line(x1: '17', y1: '17', x2: '14.82', y2: '14.82')
30
+ s.circle(cx: '8.5', cy: '15.5', r: '1.5')
31
+ s.line(x1: '9.56066', y1: '14.43934', x2: '17', y2: '7')
27
32
  end
28
33
  end
29
34
  end
30
35
  end
31
36
  end
37
+ # rubocop:enable Metrics/MethodLength
@@ -14,12 +14,12 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.rect(width: '20', height: '20', x: '2', y: '2', rx: '2')
18
- s.circle(cx: '8', cy: '8', r: '2')
19
- s.path(d: 'M9.414 9.414 12 12')
20
- s.path(d: 'M14.8 14.8 18 18')
21
- s.circle(cx: '8', cy: '16', r: '2')
22
- s.path(d: 'm18 6-8.586 8.586')
17
+ s.rect(width: '18', height: '18', x: '3', y: '3', rx: '2')
18
+ s.circle(cx: '8.5', cy: '8.5', r: '1.5')
19
+ s.line(x1: '9.56066', y1: '9.56066', x2: '12', y2: '12')
20
+ s.line(x1: '17', y1: '17', x2: '14.82', y2: '14.82')
21
+ s.circle(cx: '8.5', cy: '15.5', r: '1.5')
22
+ s.line(x1: '9.56066', y1: '14.43934', x2: '17', y2: '7')
23
23
  end
24
24
  end
25
25
  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: 'M12 9a4 4 0 0 0-2 7.5')
18
- s.path(d: 'M12 3v2')
19
- s.path(d: 'm6.6 18.4-1.4 1.4')
20
- s.path(d: 'M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z')
21
- s.path(d: 'M4 13H2')
22
- s.path(d: 'M6.34 7.34 4.93 5.93')
17
+ s.path(d: 'M12 2v2')
18
+ s.path(d: 'M12 8a4 4 0 0 0-1.645 7.647')
19
+ s.path(d: 'M2 12h2')
20
+ s.path(d: 'M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z')
21
+ s.path(d: 'm4.93 4.93 1.41 1.41')
22
+ s.path(d: 'm6.34 17.66-1.41 1.41')
23
23
  end
24
24
  end
25
25
  end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class WavesArrowDown < 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 10L12 2')
19
+ s.path(d: 'M16 6L12 10L8 6')
20
+ s.path(
21
+ d:
22
+ 'M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15'
23
+ )
24
+ s.path(
25
+ d:
26
+ 'M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21'
27
+ )
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
33
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class WavesArrowUp < 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 2v8')
18
+ s.path(
19
+ d:
20
+ 'M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'
21
+ )
22
+ s.path(
23
+ d:
24
+ 'M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'
25
+ )
26
+ s.path(d: 'm8 6 4-4 4 4')
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.554.0'
5
+ VERSION = '0.555.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -211,6 +211,7 @@ module PhlexIcons
211
211
  autoload :BookOpenCheck, 'phlex-icons/lucide/book_open_check'
212
212
  autoload :BookOpenText, 'phlex-icons/lucide/book_open_text'
213
213
  autoload :BookPlus, 'phlex-icons/lucide/book_plus'
214
+ autoload :BookSearch, 'phlex-icons/lucide/book_search'
214
215
  autoload :BookText, 'phlex-icons/lucide/book_text'
215
216
  autoload :BookType, 'phlex-icons/lucide/book_type'
216
217
  autoload :BookUp, 'phlex-icons/lucide/book_up'
@@ -702,6 +703,7 @@ module PhlexIcons
702
703
  autoload :Folders, 'phlex-icons/lucide/folders'
703
704
  autoload :Footprints, 'phlex-icons/lucide/footprints'
704
705
  autoload :Forklift, 'phlex-icons/lucide/forklift'
706
+ autoload :Form, 'phlex-icons/lucide/form'
705
707
  autoload :Forward, 'phlex-icons/lucide/forward'
706
708
  autoload :Frame, 'phlex-icons/lucide/frame'
707
709
  autoload :Framer, 'phlex-icons/lucide/framer'
@@ -1264,6 +1266,7 @@ module PhlexIcons
1264
1266
  autoload :School, 'phlex-icons/lucide/school'
1265
1267
  autoload :Scissors, 'phlex-icons/lucide/scissors'
1266
1268
  autoload :ScissorsLineDashed, 'phlex-icons/lucide/scissors_line_dashed'
1269
+ autoload :Scooter, 'phlex-icons/lucide/scooter'
1267
1270
  autoload :ScreenShare, 'phlex-icons/lucide/screen_share'
1268
1271
  autoload :ScreenShareOff, 'phlex-icons/lucide/screen_share_off'
1269
1272
  autoload :Scroll, 'phlex-icons/lucide/scroll'
@@ -1628,6 +1631,8 @@ module PhlexIcons
1628
1631
  autoload :WashingMachine, 'phlex-icons/lucide/washing_machine'
1629
1632
  autoload :Watch, 'phlex-icons/lucide/watch'
1630
1633
  autoload :Waves, 'phlex-icons/lucide/waves'
1634
+ autoload :WavesArrowDown, 'phlex-icons/lucide/waves_arrow_down'
1635
+ autoload :WavesArrowUp, 'phlex-icons/lucide/waves_arrow_up'
1631
1636
  autoload :WavesLadder, 'phlex-icons/lucide/waves_ladder'
1632
1637
  autoload :Waypoints, 'phlex-icons/lucide/waypoints'
1633
1638
  autoload :Webcam, 'phlex-icons/lucide/webcam'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.46.0'
4
+ VERSION = '2.48.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phlex-icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.46.0
4
+ version: 2.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ali Hamdi Ali Fadel
@@ -13127,6 +13127,7 @@ files:
13127
13127
  - lib/phlex-icons/lucide/book_open_check.rb
13128
13128
  - lib/phlex-icons/lucide/book_open_text.rb
13129
13129
  - lib/phlex-icons/lucide/book_plus.rb
13130
+ - lib/phlex-icons/lucide/book_search.rb
13130
13131
  - lib/phlex-icons/lucide/book_text.rb
13131
13132
  - lib/phlex-icons/lucide/book_type.rb
13132
13133
  - lib/phlex-icons/lucide/book_up.rb
@@ -13618,6 +13619,7 @@ files:
13618
13619
  - lib/phlex-icons/lucide/folders.rb
13619
13620
  - lib/phlex-icons/lucide/footprints.rb
13620
13621
  - lib/phlex-icons/lucide/forklift.rb
13622
+ - lib/phlex-icons/lucide/form.rb
13621
13623
  - lib/phlex-icons/lucide/forward.rb
13622
13624
  - lib/phlex-icons/lucide/frame.rb
13623
13625
  - lib/phlex-icons/lucide/framer.rb
@@ -14180,6 +14182,7 @@ files:
14180
14182
  - lib/phlex-icons/lucide/school.rb
14181
14183
  - lib/phlex-icons/lucide/scissors.rb
14182
14184
  - lib/phlex-icons/lucide/scissors_line_dashed.rb
14185
+ - lib/phlex-icons/lucide/scooter.rb
14183
14186
  - lib/phlex-icons/lucide/screen_share.rb
14184
14187
  - lib/phlex-icons/lucide/screen_share_off.rb
14185
14188
  - lib/phlex-icons/lucide/scroll.rb
@@ -14544,6 +14547,8 @@ files:
14544
14547
  - lib/phlex-icons/lucide/washing_machine.rb
14545
14548
  - lib/phlex-icons/lucide/watch.rb
14546
14549
  - lib/phlex-icons/lucide/waves.rb
14550
+ - lib/phlex-icons/lucide/waves_arrow_down.rb
14551
+ - lib/phlex-icons/lucide/waves_arrow_up.rb
14547
14552
  - lib/phlex-icons/lucide/waves_ladder.rb
14548
14553
  - lib/phlex-icons/lucide/waypoints.rb
14549
14554
  - lib/phlex-icons/lucide/webcam.rb