phlex-icons 2.9.0 → 2.11.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: ae616b7f205ecc79ea80c5113d75bc9528d3e56f33e4245574718dd3d1e732dd
4
- data.tar.gz: caa5a8410d89301543a27bb83ba6026f975557ab7b47663a4c4792dba4d373e7
3
+ metadata.gz: 223f0aa971539e0286f0c38d72a0e6a82bc215c4501a63966ba807f99a134dfe
4
+ data.tar.gz: c9f476333a088351a168e3b0751e3f24f46bc8cf2935a1fdccf3f2b8190b06ff
5
5
  SHA512:
6
- metadata.gz: 021105434d5bf093b63e069db7a7399f6e1b63626dff78d57c29a1b5dcbbcd82d5c800d20a060e829c4140b15c375c71a4d3d31b6ab9d0920d8b4e890225abb6
7
- data.tar.gz: a2e5a9c2165aba4b79000c9151a6252068a58769ee7edebe252d53240fae01996252d89c47dd155810ad51fc4c7dd54c1c233a6f361f4ae5be7fde8659e37cc0
6
+ metadata.gz: 77c0692aedf870de0be6909f57b4b3f57e6c44cb8f13b497d3fe8fed52b9cb27cb97aac19e4f5805187261ac85d37f755c2d51864a1b4a8bfb17217913ad9c60
7
+ data.tar.gz: f10e2eb04fa95558aec502adacb726c8876262da25d0e95cad224a97e899354a02070f29ab72bfb87d6542e28f9e5182fc41b804b856487ce3b0b9423d7f9671
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # rubocop:disable Layout/LineLength
4
3
  module PhlexIcons
5
4
  module Lucide
6
5
  class Beef < Base
@@ -15,18 +14,17 @@ module PhlexIcons
15
14
  stroke_linecap: 'round',
16
15
  stroke_linejoin: 'round'
17
16
  ) do |s|
18
- s.circle(cx: '12.5', cy: '8.5', r: '2.5')
19
17
  s.path(
20
18
  d:
21
- 'M12.5 2a6.5 6.5 0 0 0-6.22 4.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3A6.5 6.5 0 0 0 12.5 2Z'
19
+ 'M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3'
22
20
  )
23
21
  s.path(
24
22
  d:
25
- 'm18.5 6 2.19 4.5a6.48 6.48 0 0 1 .31 2 6.49 6.49 0 0 1-2.6 5.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5'
23
+ 'm18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5'
26
24
  )
25
+ s.circle(cx: '12.5', cy: '8.5', r: '2.5')
27
26
  end
28
27
  end
29
28
  end
30
29
  end
31
30
  end
32
- # rubocop:enable Layout/LineLength
@@ -14,8 +14,8 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.circle(cx: '12', cy: '12', r: '10')
18
17
  s.path(d: 'M22 2 2 22')
18
+ s.circle(cx: '12', cy: '12', r: '10')
19
19
  end
20
20
  end
21
21
  end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class CircleSmall < 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
+ ) { |s| s.circle(cx: '12', cy: '12', r: '6') }
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Mars < 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: 'M16 3h5v5')
18
+ s.path(d: 'm21 3-6.75 6.75')
19
+ s.circle(cx: '10', cy: '14', r: '6')
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class MarsStroke < 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: 'm14 6 4 4')
18
+ s.path(d: 'M17 3h4v4')
19
+ s.path(d: 'm21 3-7.75 7.75')
20
+ s.circle(cx: '9', cy: '15', r: '6')
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 NonBinary < 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 2v10')
18
+ s.path(d: 'm9 4 6 4')
19
+ s.path(d: 'm9 8 6-4')
20
+ s.circle(cx: '12', cy: '17', r: '5')
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class ShieldUser < 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
+ 'M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'
21
+ )
22
+ s.path(d: 'M6.376 18.91a6 6 0 0 1 11.249.003')
23
+ s.circle(cx: '12', cy: '11', r: '4')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Transgender < 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 16v6')
18
+ s.path(d: 'M14 20h-4')
19
+ s.path(d: 'M18 2h4v4')
20
+ s.path(d: 'm2 2 7.17 7.17')
21
+ s.path(d: 'M2 5.355V2h3.357')
22
+ s.path(d: 'm22 2-7.17 7.17')
23
+ s.path(d: 'M8 5 5 8')
24
+ s.circle(cx: '12', cy: '12', r: '4')
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Venus < 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 15v7')
18
+ s.path(d: 'M9 19h6')
19
+ s.circle(cx: '12', cy: '9', r: '6')
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class VenusAndMars < 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: 'M10 20h4')
18
+ s.path(d: 'M12 16v6')
19
+ s.path(d: 'M17 2h4v4')
20
+ s.path(d: 'm21 2-5.46 5.46')
21
+ s.circle(cx: '12', cy: '11', r: '5')
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.474.0'
5
+ VERSION = '0.476.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -375,6 +375,7 @@ module PhlexIcons
375
375
  autoload :CirclePower, 'phlex-icons/lucide/circle_power'
376
376
  autoload :CircleSlash, 'phlex-icons/lucide/circle_slash'
377
377
  autoload :CircleSlash2, 'phlex-icons/lucide/circle_slash_2'
378
+ autoload :CircleSmall, 'phlex-icons/lucide/circle_small'
378
379
  autoload :CircleStop, 'phlex-icons/lucide/circle_stop'
379
380
  autoload :CircleUser, 'phlex-icons/lucide/circle_user'
380
381
  autoload :CircleUserRound, 'phlex-icons/lucide/circle_user_round'
@@ -900,6 +901,8 @@ module PhlexIcons
900
901
  autoload :MapPinXInside, 'phlex-icons/lucide/map_pin_x_inside'
901
902
  autoload :MapPinned, 'phlex-icons/lucide/map_pinned'
902
903
  autoload :MapPlus, 'phlex-icons/lucide/map_plus'
904
+ autoload :Mars, 'phlex-icons/lucide/mars'
905
+ autoload :MarsStroke, 'phlex-icons/lucide/mars_stroke'
903
906
  autoload :Martini, 'phlex-icons/lucide/martini'
904
907
  autoload :Maximize, 'phlex-icons/lucide/maximize'
905
908
  autoload :Maximize2, 'phlex-icons/lucide/maximize_2'
@@ -998,6 +1001,7 @@ module PhlexIcons
998
1001
  autoload :Network, 'phlex-icons/lucide/network'
999
1002
  autoload :Newspaper, 'phlex-icons/lucide/newspaper'
1000
1003
  autoload :Nfc, 'phlex-icons/lucide/nfc'
1004
+ autoload :NonBinary, 'phlex-icons/lucide/non_binary'
1001
1005
  autoload :Notebook, 'phlex-icons/lucide/notebook'
1002
1006
  autoload :NotebookPen, 'phlex-icons/lucide/notebook_pen'
1003
1007
  autoload :NotebookTabs, 'phlex-icons/lucide/notebook_tabs'
@@ -1235,6 +1239,7 @@ module PhlexIcons
1235
1239
  autoload :ShieldOff, 'phlex-icons/lucide/shield_off'
1236
1240
  autoload :ShieldPlus, 'phlex-icons/lucide/shield_plus'
1237
1241
  autoload :ShieldQuestion, 'phlex-icons/lucide/shield_question'
1242
+ autoload :ShieldUser, 'phlex-icons/lucide/shield_user'
1238
1243
  autoload :ShieldX, 'phlex-icons/lucide/shield_x'
1239
1244
  autoload :Ship, 'phlex-icons/lucide/ship'
1240
1245
  autoload :ShipWheel, 'phlex-icons/lucide/ship_wheel'
@@ -1442,6 +1447,7 @@ module PhlexIcons
1442
1447
  autoload :TrainFrontTunnel, 'phlex-icons/lucide/train_front_tunnel'
1443
1448
  autoload :TrainTrack, 'phlex-icons/lucide/train_track'
1444
1449
  autoload :TramFront, 'phlex-icons/lucide/tram_front'
1450
+ autoload :Transgender, 'phlex-icons/lucide/transgender'
1445
1451
  autoload :Trash, 'phlex-icons/lucide/trash'
1446
1452
  autoload :Trash2, 'phlex-icons/lucide/trash_2'
1447
1453
  autoload :TreeDeciduous, 'phlex-icons/lucide/tree_deciduous'
@@ -1506,6 +1512,8 @@ module PhlexIcons
1506
1512
  autoload :Vault, 'phlex-icons/lucide/vault'
1507
1513
  autoload :Vegan, 'phlex-icons/lucide/vegan'
1508
1514
  autoload :VenetianMask, 'phlex-icons/lucide/venetian_mask'
1515
+ autoload :Venus, 'phlex-icons/lucide/venus'
1516
+ autoload :VenusAndMars, 'phlex-icons/lucide/venus_and_mars'
1509
1517
  autoload :Vibrate, 'phlex-icons/lucide/vibrate'
1510
1518
  autoload :VibrateOff, 'phlex-icons/lucide/vibrate_off'
1511
1519
  autoload :Video, 'phlex-icons/lucide/video'
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Tabler # rubocop:disable Metrics/ModuleLength
5
- VERSION = '3.29.0'
5
+ VERSION = '3.30.0'
6
6
  VARIANTS = %i[outline filled].freeze
7
7
 
8
8
  extend Phlex::Kit
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.9.0'
4
+ VERSION = '2.11.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.9.0
4
+ version: 2.11.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-02-09 00:00:00.000000000 Z
11
+ date: 2025-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -4262,6 +4262,7 @@ files:
4262
4262
  - lib/phlex-icons/lucide/circle_power.rb
4263
4263
  - lib/phlex-icons/lucide/circle_slash.rb
4264
4264
  - lib/phlex-icons/lucide/circle_slash_2.rb
4265
+ - lib/phlex-icons/lucide/circle_small.rb
4265
4266
  - lib/phlex-icons/lucide/circle_stop.rb
4266
4267
  - lib/phlex-icons/lucide/circle_user.rb
4267
4268
  - lib/phlex-icons/lucide/circle_user_round.rb
@@ -4787,6 +4788,8 @@ files:
4787
4788
  - lib/phlex-icons/lucide/map_pin_x_inside.rb
4788
4789
  - lib/phlex-icons/lucide/map_pinned.rb
4789
4790
  - lib/phlex-icons/lucide/map_plus.rb
4791
+ - lib/phlex-icons/lucide/mars.rb
4792
+ - lib/phlex-icons/lucide/mars_stroke.rb
4790
4793
  - lib/phlex-icons/lucide/martini.rb
4791
4794
  - lib/phlex-icons/lucide/maximize.rb
4792
4795
  - lib/phlex-icons/lucide/maximize_2.rb
@@ -4885,6 +4888,7 @@ files:
4885
4888
  - lib/phlex-icons/lucide/network.rb
4886
4889
  - lib/phlex-icons/lucide/newspaper.rb
4887
4890
  - lib/phlex-icons/lucide/nfc.rb
4891
+ - lib/phlex-icons/lucide/non_binary.rb
4888
4892
  - lib/phlex-icons/lucide/notebook.rb
4889
4893
  - lib/phlex-icons/lucide/notebook_pen.rb
4890
4894
  - lib/phlex-icons/lucide/notebook_tabs.rb
@@ -5122,6 +5126,7 @@ files:
5122
5126
  - lib/phlex-icons/lucide/shield_off.rb
5123
5127
  - lib/phlex-icons/lucide/shield_plus.rb
5124
5128
  - lib/phlex-icons/lucide/shield_question.rb
5129
+ - lib/phlex-icons/lucide/shield_user.rb
5125
5130
  - lib/phlex-icons/lucide/shield_x.rb
5126
5131
  - lib/phlex-icons/lucide/ship.rb
5127
5132
  - lib/phlex-icons/lucide/ship_wheel.rb
@@ -5329,6 +5334,7 @@ files:
5329
5334
  - lib/phlex-icons/lucide/train_front_tunnel.rb
5330
5335
  - lib/phlex-icons/lucide/train_track.rb
5331
5336
  - lib/phlex-icons/lucide/tram_front.rb
5337
+ - lib/phlex-icons/lucide/transgender.rb
5332
5338
  - lib/phlex-icons/lucide/trash.rb
5333
5339
  - lib/phlex-icons/lucide/trash_2.rb
5334
5340
  - lib/phlex-icons/lucide/tree_deciduous.rb
@@ -5393,6 +5399,8 @@ files:
5393
5399
  - lib/phlex-icons/lucide/vault.rb
5394
5400
  - lib/phlex-icons/lucide/vegan.rb
5395
5401
  - lib/phlex-icons/lucide/venetian_mask.rb
5402
+ - lib/phlex-icons/lucide/venus.rb
5403
+ - lib/phlex-icons/lucide/venus_and_mars.rb
5396
5404
  - lib/phlex-icons/lucide/vibrate.rb
5397
5405
  - lib/phlex-icons/lucide/vibrate_off.rb
5398
5406
  - lib/phlex-icons/lucide/video.rb