phlex-icons-lucide 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: 93cc6296b37f5bdf01bb524cded7e3dc9ca27ae3947fe202553edbd045205bee
4
- data.tar.gz: a7418a383767d36962e29b28d19fb1d8655355f745edac6592fe22f0bf58dbb7
3
+ metadata.gz: 742cf58769965b8064521e9e91ccef3b42d45e26d7abb9f61e5d685b798cab2b
4
+ data.tar.gz: 1e6ae6360ab3545f3a64e3045f1cfe9bb0b36436e587adfa633b37724cbe2594
5
5
  SHA512:
6
- metadata.gz: 882edd544f220bd533483c71eacf8bef6002786dbc40db8f340bc992bc20ffee23efde6cf5b76a5574cb3fc00ef97627a563c1ce4b735ee9a30b817eb1403484
7
- data.tar.gz: 9f49b8cae2e5aab8955203877c0d161c8457f9157770b5311afa6a7ab801d1c33efa8f68c7d8c7ed022a2f368992de5228e5078204e3711aee93ca4382b5c80f
6
+ metadata.gz: 3f8b9d911f1dc08c033d95f3721db7d84e531be2d5fa186557652f72a64a0047dddb08edd52c27f90ba7a6049dffbb8cc3c64380f8841c820026f388faaccb4e
7
+ data.tar.gz: 45f5ba7de4e952ca1f419d20b6beab46e85401c02ddc9febeed6da3e740c080ac1f9cf6d7b544d46b3a7de35b1c5f365285351ba067f4ee4b6d8958a6ef30e71
@@ -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'
@@ -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-lucide
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
@@ -419,6 +419,7 @@ files:
419
419
  - lib/phlex-icons/lucide/circle_power.rb
420
420
  - lib/phlex-icons/lucide/circle_slash.rb
421
421
  - lib/phlex-icons/lucide/circle_slash_2.rb
422
+ - lib/phlex-icons/lucide/circle_small.rb
422
423
  - lib/phlex-icons/lucide/circle_stop.rb
423
424
  - lib/phlex-icons/lucide/circle_user.rb
424
425
  - lib/phlex-icons/lucide/circle_user_round.rb
@@ -944,6 +945,8 @@ files:
944
945
  - lib/phlex-icons/lucide/map_pin_x_inside.rb
945
946
  - lib/phlex-icons/lucide/map_pinned.rb
946
947
  - lib/phlex-icons/lucide/map_plus.rb
948
+ - lib/phlex-icons/lucide/mars.rb
949
+ - lib/phlex-icons/lucide/mars_stroke.rb
947
950
  - lib/phlex-icons/lucide/martini.rb
948
951
  - lib/phlex-icons/lucide/maximize.rb
949
952
  - lib/phlex-icons/lucide/maximize_2.rb
@@ -1042,6 +1045,7 @@ files:
1042
1045
  - lib/phlex-icons/lucide/network.rb
1043
1046
  - lib/phlex-icons/lucide/newspaper.rb
1044
1047
  - lib/phlex-icons/lucide/nfc.rb
1048
+ - lib/phlex-icons/lucide/non_binary.rb
1045
1049
  - lib/phlex-icons/lucide/notebook.rb
1046
1050
  - lib/phlex-icons/lucide/notebook_pen.rb
1047
1051
  - lib/phlex-icons/lucide/notebook_tabs.rb
@@ -1279,6 +1283,7 @@ files:
1279
1283
  - lib/phlex-icons/lucide/shield_off.rb
1280
1284
  - lib/phlex-icons/lucide/shield_plus.rb
1281
1285
  - lib/phlex-icons/lucide/shield_question.rb
1286
+ - lib/phlex-icons/lucide/shield_user.rb
1282
1287
  - lib/phlex-icons/lucide/shield_x.rb
1283
1288
  - lib/phlex-icons/lucide/ship.rb
1284
1289
  - lib/phlex-icons/lucide/ship_wheel.rb
@@ -1486,6 +1491,7 @@ files:
1486
1491
  - lib/phlex-icons/lucide/train_front_tunnel.rb
1487
1492
  - lib/phlex-icons/lucide/train_track.rb
1488
1493
  - lib/phlex-icons/lucide/tram_front.rb
1494
+ - lib/phlex-icons/lucide/transgender.rb
1489
1495
  - lib/phlex-icons/lucide/trash.rb
1490
1496
  - lib/phlex-icons/lucide/trash_2.rb
1491
1497
  - lib/phlex-icons/lucide/tree_deciduous.rb
@@ -1550,6 +1556,8 @@ files:
1550
1556
  - lib/phlex-icons/lucide/vault.rb
1551
1557
  - lib/phlex-icons/lucide/vegan.rb
1552
1558
  - lib/phlex-icons/lucide/venetian_mask.rb
1559
+ - lib/phlex-icons/lucide/venus.rb
1560
+ - lib/phlex-icons/lucide/venus_and_mars.rb
1553
1561
  - lib/phlex-icons/lucide/vibrate.rb
1554
1562
  - lib/phlex-icons/lucide/vibrate_off.rb
1555
1563
  - lib/phlex-icons/lucide/video.rb