phlex-icons-lucide 2.9.0 → 2.10.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 +4 -4
- data/lib/phlex-icons/lucide/circle_small.rb +20 -0
- data/lib/phlex-icons/lucide/mars.rb +24 -0
- data/lib/phlex-icons/lucide/mars_stroke.rb +25 -0
- data/lib/phlex-icons/lucide/non_binary.rb +25 -0
- data/lib/phlex-icons/lucide/transgender.rb +29 -0
- data/lib/phlex-icons/lucide/venus.rb +24 -0
- data/lib/phlex-icons/lucide/venus_and_mars.rb +26 -0
- data/lib/phlex-icons/lucide.rb +8 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b10fb9810bc32ad8243a820c04a5d9c71ffdef416f2647a3a438c130a9916d52
|
4
|
+
data.tar.gz: 4d5e36f6db5cc25b21988a867ffee8928639cf95c330b518b07565139a807427
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 637324ccbbfbddcc0abb833e404b90fb3d51f8cf0d770e861dd36d771fecbe430abf53e77e179bdee3fd6f88fd98d67f6319031963296b15fea983e92537f0d9
|
7
|
+
data.tar.gz: 50aa34b229c24c306270a69aaef93500e60dc9c40795fc045f8fa91d338e0440f07d0cb43d240aea870366b78d9f4d6c0a5b9a405c62dbd1dc0f7d38f9bacb16
|
@@ -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
|
+
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
|
data/lib/phlex-icons/lucide.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module PhlexIcons
|
4
4
|
module Lucide # rubocop:disable Metrics/ModuleLength
|
5
|
-
VERSION = '0.
|
5
|
+
VERSION = '0.475.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'
|
@@ -1442,6 +1446,7 @@ module PhlexIcons
|
|
1442
1446
|
autoload :TrainFrontTunnel, 'phlex-icons/lucide/train_front_tunnel'
|
1443
1447
|
autoload :TrainTrack, 'phlex-icons/lucide/train_track'
|
1444
1448
|
autoload :TramFront, 'phlex-icons/lucide/tram_front'
|
1449
|
+
autoload :Transgender, 'phlex-icons/lucide/transgender'
|
1445
1450
|
autoload :Trash, 'phlex-icons/lucide/trash'
|
1446
1451
|
autoload :Trash2, 'phlex-icons/lucide/trash_2'
|
1447
1452
|
autoload :TreeDeciduous, 'phlex-icons/lucide/tree_deciduous'
|
@@ -1506,6 +1511,8 @@ module PhlexIcons
|
|
1506
1511
|
autoload :Vault, 'phlex-icons/lucide/vault'
|
1507
1512
|
autoload :Vegan, 'phlex-icons/lucide/vegan'
|
1508
1513
|
autoload :VenetianMask, 'phlex-icons/lucide/venetian_mask'
|
1514
|
+
autoload :Venus, 'phlex-icons/lucide/venus'
|
1515
|
+
autoload :VenusAndMars, 'phlex-icons/lucide/venus_and_mars'
|
1509
1516
|
autoload :Vibrate, 'phlex-icons/lucide/vibrate'
|
1510
1517
|
autoload :VibrateOff, 'phlex-icons/lucide/vibrate_off'
|
1511
1518
|
autoload :Video, 'phlex-icons/lucide/video'
|
data/lib/phlex-icons/version.rb
CHANGED
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.
|
4
|
+
version: 2.10.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-
|
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
|
@@ -1486,6 +1490,7 @@ files:
|
|
1486
1490
|
- lib/phlex-icons/lucide/train_front_tunnel.rb
|
1487
1491
|
- lib/phlex-icons/lucide/train_track.rb
|
1488
1492
|
- lib/phlex-icons/lucide/tram_front.rb
|
1493
|
+
- lib/phlex-icons/lucide/transgender.rb
|
1489
1494
|
- lib/phlex-icons/lucide/trash.rb
|
1490
1495
|
- lib/phlex-icons/lucide/trash_2.rb
|
1491
1496
|
- lib/phlex-icons/lucide/tree_deciduous.rb
|
@@ -1550,6 +1555,8 @@ files:
|
|
1550
1555
|
- lib/phlex-icons/lucide/vault.rb
|
1551
1556
|
- lib/phlex-icons/lucide/vegan.rb
|
1552
1557
|
- lib/phlex-icons/lucide/venetian_mask.rb
|
1558
|
+
- lib/phlex-icons/lucide/venus.rb
|
1559
|
+
- lib/phlex-icons/lucide/venus_and_mars.rb
|
1553
1560
|
- lib/phlex-icons/lucide/vibrate.rb
|
1554
1561
|
- lib/phlex-icons/lucide/vibrate_off.rb
|
1555
1562
|
- lib/phlex-icons/lucide/video.rb
|