phlex-icons 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/tabler.rb +1 -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: 8a6f39ce96ac8d06ded12fbb65a74e9365c367ce9dab813d259c66dffa3f7d6f
|
4
|
+
data.tar.gz: b56883e591a1410460d440755a36a6d0d04da90f101a4b7835ec62d6bf50ca6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bb1399c8917b3fa7eb454cc45bcf9f51f891cd2512a98798b2cae9a0d0e0bee3a15b590d59692b85979e80113bd13d358f574a9880ec13478868642f40069f3
|
7
|
+
data.tar.gz: 14aa5c05a0dae76902b33b02ec8f6304298715be76ce7d1cd2bf5d5f88789a8f47448414ed1c8acdb0a3a49f2f3f7444f6c95a5e11d702c1651fa1429620662d
|
@@ -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/tabler.rb
CHANGED
data/lib/phlex-icons/version.rb
CHANGED
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.
|
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
|
@@ -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
|
@@ -5329,6 +5333,7 @@ files:
|
|
5329
5333
|
- lib/phlex-icons/lucide/train_front_tunnel.rb
|
5330
5334
|
- lib/phlex-icons/lucide/train_track.rb
|
5331
5335
|
- lib/phlex-icons/lucide/tram_front.rb
|
5336
|
+
- lib/phlex-icons/lucide/transgender.rb
|
5332
5337
|
- lib/phlex-icons/lucide/trash.rb
|
5333
5338
|
- lib/phlex-icons/lucide/trash_2.rb
|
5334
5339
|
- lib/phlex-icons/lucide/tree_deciduous.rb
|
@@ -5393,6 +5398,8 @@ files:
|
|
5393
5398
|
- lib/phlex-icons/lucide/vault.rb
|
5394
5399
|
- lib/phlex-icons/lucide/vegan.rb
|
5395
5400
|
- lib/phlex-icons/lucide/venetian_mask.rb
|
5401
|
+
- lib/phlex-icons/lucide/venus.rb
|
5402
|
+
- lib/phlex-icons/lucide/venus_and_mars.rb
|
5396
5403
|
- lib/phlex-icons/lucide/vibrate.rb
|
5397
5404
|
- lib/phlex-icons/lucide/vibrate_off.rb
|
5398
5405
|
- lib/phlex-icons/lucide/video.rb
|