phlex-icons 2.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51e6c914e02f4c143988eec37cd6512ebadcbded24658c9f8881128b5cbdbcf5
4
- data.tar.gz: f85bf3dc097f3a472dc34f29f38132c04504af2503657977001b6a8f2ccd9458
3
+ metadata.gz: 8a6f39ce96ac8d06ded12fbb65a74e9365c367ce9dab813d259c66dffa3f7d6f
4
+ data.tar.gz: b56883e591a1410460d440755a36a6d0d04da90f101a4b7835ec62d6bf50ca6a
5
5
  SHA512:
6
- metadata.gz: c646ab50d69546756243c7a1bc05c4f36a7f9f28201ed2c44c8f3408463505c01880951514dae5e5819b89e59b3aecb807ed425b3164215f942efa99c0e0a4da
7
- data.tar.gz: 7e3cca2d4c8cd4c5dd0b247d2c3562b1390fdfc1f12fcb226176c07f2ae8eb6fb222c892a658df641bf96729fc514b13105bbc7ea7625f2df31f25e148dd2eeb
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
@@ -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.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'
@@ -5,7 +5,17 @@ module PhlexIcons
5
5
  module Tabler
6
6
  class DropCircle < Base
7
7
  def filled
8
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M17 3.34a10 10 0 1 1 -15 8.66l.005 -.324a10 10 0 0 1 14.995 -8.336m-4.177 4.092a1 1 0 0 0 -1.646 0l-2.602 3.764c-1.022 1.67 -.634 3.736 .875 4.929a4.144 4.144 0 0 0 5.095 0c1.51 -1.191 1.897 -3.26 .904 -4.882z'
17
+ )
18
+ end
9
19
  end
10
20
 
11
21
  def outline
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class DualScreen < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M19 3a1 1 0 0 1 1 1v15a1 1 0 0 1 -1 1h-5v2a1 1 0 0 1 -1.351 .936l-8 -3a1 1 0 0 1 -.649 -.936v-15a1 1 0 0 1 .212 -.616l.068 -.079l.078 -.072l.066 -.05l.092 -.058l.065 -.033l.1 -.04l.099 -.028l.046 -.01l.108 -.013l.066 -.001zm-5.649 3.064a1 1 0 0 1 .649 .936v11h4v-13h-7.486z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -25,3 +36,4 @@ module PhlexIcons
25
36
  end
26
37
  end
27
38
  end
39
+ # rubocop:enable Layout/LineLength
@@ -5,7 +5,17 @@ module PhlexIcons
5
5
  module Tabler
6
6
  class Dumpling < Base
7
7
  def filled
8
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M10.003 2.04a3.53 3.53 0 0 1 2.602 .62l.09 .07l.149 -.11a3.53 3.53 0 0 1 3.044 -.462l.207 .072a3.53 3.53 0 0 1 1.99 1.903l.014 .031l.045 -.004a3.53 3.53 0 0 1 2.624 .879l.153 .144l.358 .358c1.976 1.977 -.32 6.748 -4.655 11.083c-4.336 4.335 -9.106 6.632 -11.083 4.655l-.382 -.382l-.135 -.145a3.53 3.53 0 0 1 -.87 -2.556l.01 -.1l-.162 -.072a3.53 3.53 0 0 1 -1.838 -2.124l-.055 -.192a3.53 3.53 0 0 1 .56 -2.937l.062 -.079l-.07 -.092a3.53 3.53 0 0 1 -.644 -2.401l.025 -.2a3.53 3.53 0 0 1 1.707 -2.505l.046 -.026l-.005 -.14a3.53 3.53 0 0 1 .885 -2.345l.15 -.16l.159 -.149a3.53 3.53 0 0 1 2.346 -.884l.14 .004l.026 -.046a3.53 3.53 0 0 1 2.308 -1.67z'
17
+ )
18
+ end
9
19
  end
10
20
 
11
21
  def outline
@@ -5,7 +5,17 @@ module PhlexIcons
5
5
  module Tabler
6
6
  class EggFried < Base
7
7
  def filled
8
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M14.001 1.996q .06 0 .117 .007l.155 .003a6 6 0 0 1 4.25 2.05l.176 .21a6 6 0 0 1 1.296 4.014l-.018 .244l.106 .06a4 4 0 0 1 1.904 3.087l.011 .204a4 4 0 0 1 -1.392 3.161l-.085 .069l.083 .16a4 4 0 0 1 .239 2.848l-.065 .204a4 4 0 0 1 -6.257 1.824l-.115 -.096l-.092 .1a6 6 0 0 1 -4.022 1.787l-.257 .006a6 6 0 0 1 -5.644 -8.04l.034 -.089l-.155 -.12a6 6 0 0 1 -1.662 -7.256l.105 -.211a6 6 0 0 1 7.246 -2.894l.188 .068l.073 -.06a6 6 0 0 1 3.505 -1.334zm-2.001 7.004a3 3 0 0 0 -2.996 2.85l-.004 .15a3 3 0 1 0 3 -3'
17
+ )
18
+ end
9
19
  end
10
20
 
11
21
  def outline
@@ -5,7 +5,17 @@ module PhlexIcons
5
5
  module Tabler
6
6
  class Escalator < Base
7
7
  def filled
8
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M19.5 4a3.5 3.5 0 0 1 0 7h-1.086l-8.12 8.121a3 3 0 0 1 -1.924 .872l-.198 .007h-3.672a3.5 3.5 0 0 1 0 -7h2.084l8.123 -8.121a3 3 0 0 1 1.923 -.872l.198 -.007z'
17
+ )
18
+ end
9
19
  end
10
20
 
11
21
  def outline
@@ -5,7 +5,21 @@ module PhlexIcons
5
5
  module Tabler
6
6
  class EscalatorDown < Base
7
7
  def filled
8
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M7.233 6a3 3 0 0 1 2.006 .77l9.145 8.23h1.116a3.5 3.5 0 0 1 3.495 3.308l.005 .192a3.5 3.5 0 0 1 -3.5 3.5h-2.733a3 3 0 0 1 -2.006 -.77l-9.144 -8.23h-1.117a3.5 3.5 0 0 1 -3.495 -3.308l-.005 -.192a3.5 3.5 0 0 1 3.5 -3.5z'
17
+ )
18
+ s.path(
19
+ d:
20
+ 'M18 2a1 1 0 0 1 1 1v4.584l1.293 -1.291a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 0 1.414l-3 3a1 1 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.096 -.067l-.09 -.08l-3 -3a1 1 0 1 1 1.414 -1.414l1.293 1.293v-4.586a1 1 0 0 1 1 -1'
21
+ )
22
+ end
9
23
  end
10
24
 
11
25
  def outline
@@ -5,7 +5,25 @@ module PhlexIcons
5
5
  module Tabler
6
6
  class EscalatorUp < Base
7
7
  def filled
8
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M19.5 6a3.5 3.5 0 0 1 0 7h-1.086l-8.12 8.121a3 3 0 0 1 -1.924 .872l-.198 .007h-3.672a3.5 3.5 0 0 1 0 -7h2.084l8.123 -8.121a3 3 0 0 1 1.923 -.872l.198 -.007z'
17
+ )
18
+ s.path(
19
+ d:
20
+ 'M19.5 8h-2.672a1 1 0 0 0 -.707 .293l-8.414 8.414a1 1 0 0 1 -.707 .293h-2.5a1.5 1.5 0 0 0 0 3h3.672a1 1 0 0 0 .707 -.293l8.414 -8.414a1 1 0 0 1 .707 -.293h1.5a1.5 1.5 0 0 0 0 -3'
21
+ )
22
+ s.path(
23
+ d:
24
+ 'M5.852 2.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l3 3a1 1 0 1 1 -1.414 1.414l-1.293 -1.292v4.585a1 1 0 0 1 -2 0v-4.585l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 0 -1.414l3 -3q .053 -.054 .112 -.097l.11 -.071l.114 -.054l.105 -.035z'
25
+ )
26
+ end
9
27
  end
10
28
 
11
29
  def outline
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class Exchange < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M19 3a3 3 0 0 1 1 5.83v4.17a6 6 0 0 1 -6 6h-.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.414 0l-2.959 -2.959a1 1 0 0 1 -.238 -.32l-.038 -.091l-.028 -.094a.98 .98 0 0 1 .187 -.866l.076 -.084l3 -3a1 1 0 0 1 1.414 1.414l-1.293 1.293h.586a4 4 0 0 0 3.995 -3.8l.005 -.2v-4.171a3 3 0 0 1 -2 -2.829l.005 -.176a3 3 0 0 1 2.995 -2.824m-8.293 -.707l3 3a.98 .98 0 0 1 .263 .95l-.01 .031l-.003 .018l-.008 .018l-.007 .027l-.016 .035l-.01 .032l-.007 .01l-.005 .014a1 1 0 0 1 -.232 .316l-2.965 2.963a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 0 -1.414l1.291 -1.293h-.584a4 4 0 0 0 -3.995 3.8l-.005 .2v4.171a3.001 3.001 0 1 1 -4 2.829l.005 -.176a3 3 0 0 1 1.995 -2.654v-4.17a6 6 0 0 1 6 -6h.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.414 0'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -27,3 +38,4 @@ module PhlexIcons
27
38
  end
28
39
  end
29
40
  end
41
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class Explicit < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2zm-5 4h-4a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h4a1 1 0 0 0 1 -1l-.007 -.117a1 1 0 0 0 -.993 -.883h-3v-2h3a1 1 0 0 0 0 -2h-3v-2h3a1 1 0 0 0 0 -2'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -29,3 +40,4 @@ module PhlexIcons
29
40
  end
30
41
  end
31
42
  end
43
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FileCheck < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm3.707 10.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292a1 1 0 1 0 -1.414 1.414l2 2a1 1 0 0 0 1.414 0l4 -4a1 1 0 0 0 0 -1.414m-.707 -9.294l4 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -28,3 +39,4 @@ module PhlexIcons
28
39
  end
29
40
  end
30
41
  end
42
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FileCode2 < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm-2 9h-1a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007v-3a1 1 0 0 0 0 -2m5 0h-1a1 1 0 0 0 0 2v3a1 1 0 0 0 0 2h1a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1m-.001 -8.001l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -29,3 +40,4 @@ module PhlexIcons
29
40
  end
30
41
  end
31
42
  end
43
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FileCv < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm-2.5 8a2.5 2.5 0 0 0 -2.5 2.5v3a2.5 2.5 0 1 0 5 0a1 1 0 0 0 -2 0a.5 .5 0 1 1 -1 0v-3a.5 .5 0 1 1 1 0a1 1 0 0 0 2 0a2.5 2.5 0 0 0 -2.5 -2.5m6.743 .03a1 1 0 0 0 -1.213 .727l-.53 2.119l-.53 -2.119a1 1 0 1 0 -1.94 .486l1.5 6c.252 1.01 1.688 1.01 1.94 0l1.5 -6a1 1 0 0 0 -.727 -1.213m-1.244 -7.031l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -29,3 +40,4 @@ module PhlexIcons
29
40
  end
30
41
  end
31
42
  end
43
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FileDelta < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm.894 8.553a1 1 0 0 0 -1.788 0l-3 6a1 1 0 0 0 .894 1.447h6a1 1 0 0 0 .894 -1.447zm-.894 2.683l1.381 2.764h-2.763zm2.999 -10.237l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -28,3 +39,4 @@ module PhlexIcons
28
39
  end
29
40
  end
30
41
  end
42
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FileDownload < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm0 8a1 1 0 0 0 -1 1v3.585l-.793 -.792a1 1 0 0 0 -1.32 -.083l-.094 .083a1 1 0 0 0 0 1.414l2.5 2.5l.044 .042l.068 .055l.11 .071l.114 .054l.105 .035l.15 .03l.116 .006l.117 -.007l.117 -.02l.108 -.033l.081 -.034l.098 -.052l.092 -.064l.094 -.083l2.5 -2.5a1 1 0 0 0 0 -1.414l-.094 -.083a1 1 0 0 0 -1.32 .083l-.793 .791v-3.584a1 1 0 0 0 -.883 -.993zm2.999 -7.001l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -29,3 +40,4 @@ module PhlexIcons
29
40
  end
30
41
  end
31
42
  end
43
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FileLambda < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm-2 8a1 1 0 0 0 -.117 1.993l.117 .007c.342 0 .662 .362 1.166 1.445l-1.998 3a1 1 0 0 0 1.664 1.11l1.29 -1.934c.825 1.738 1.508 2.379 2.878 2.379a1 1 0 0 0 .117 -1.993l-.117 -.007c-.39 0 -.75 -.47 -1.387 -1.938l-.415 -.976c-.985 -2.274 -1.656 -3.086 -3.198 -3.086m4.999 -7.001l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -29,3 +40,4 @@ module PhlexIcons
29
40
  end
30
41
  end
31
42
  end
43
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FilePercent < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm2.01 14h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m.697 -3.707a1 1 0 0 0 -1.414 0l-4 4a1 1 0 0 0 1.414 1.414l4 -4a1 1 0 0 0 0 -1.414m-4.697 -.293h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m4.989 -9.001l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -30,3 +41,4 @@ module PhlexIcons
30
41
  end
31
42
  end
32
43
  end
44
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FilePhone < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm-2.5 7.5a1.5 1.5 0 0 0 -1.5 1.5v1a6 6 0 0 0 6 6h1a1.5 1.5 0 0 0 0 -3h-1l-.144 .007a1.5 1.5 0 0 0 -1.128 .697l-.042 .074l-.022 -.007a4.01 4.01 0 0 1 -2.435 -2.435l-.008 -.023l.075 -.041a1.5 1.5 0 0 0 .704 -1.272v-1a1.5 1.5 0 0 0 -1.5 -1.5m5.499 -6.501l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -31,3 +42,4 @@ module PhlexIcons
31
42
  end
32
43
  end
33
44
  end
45
+ # rubocop:enable Layout/LineLength
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Tabler
5
6
  class FileRss < Base
6
7
  def filled
7
- raise NotImplementedError
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'currentColor'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm-3 11a1 1 0 0 0 0 2a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 2 0a4 4 0 0 0 -4 -4m0 -3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7m.01 6h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m5.989 -13.001l4.001 4.001h-4z'
17
+ )
18
+ end
8
19
  end
9
20
 
10
21
  def outline
@@ -30,3 +41,4 @@ module PhlexIcons
30
41
  end
31
42
  end
32
43
  end
44
+ # rubocop:enable Layout/LineLength
@@ -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.8.0'
4
+ VERSION = '2.10.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.8.0
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-01-24 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
@@ -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