phlex-icons-lucide 2.26.0 → 2.27.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/{badge_help.rb → badge_question_mark.rb} +1 -1
- data/lib/phlex-icons/lucide/barrel.rb +31 -0
- data/lib/phlex-icons/lucide/blocks.rb +2 -2
- data/lib/phlex-icons/lucide/{circle_help.rb → circle_question_mark.rb} +1 -1
- data/lib/phlex-icons/lucide/drone.rb +32 -0
- data/lib/phlex-icons/lucide/egg.rb +1 -8
- data/lib/phlex-icons/lucide/egg_off.rb +3 -11
- data/lib/phlex-icons/lucide/{file_question.rb → file_question_mark.rb} +1 -1
- data/lib/phlex-icons/lucide/{mail_question.rb → mail_question_mark.rb} +1 -1
- data/lib/phlex-icons/lucide/{message_circle_question.rb → message_circle_question_mark.rb} +1 -1
- data/lib/phlex-icons/lucide/mic.rb +2 -2
- data/lib/phlex-icons/lucide/pocket.rb +2 -5
- data/lib/phlex-icons/lucide/radio.rb +4 -4
- data/lib/phlex-icons/lucide/rectangle_circle.rb +23 -0
- data/lib/phlex-icons/lucide/{shield_question.rb → shield_question_mark.rb} +1 -1
- data/lib/phlex-icons/lucide/stamp.rb +3 -7
- data/lib/phlex-icons/lucide/wifi_cog.rb +35 -0
- data/lib/phlex-icons/lucide.rb +11 -7
- data/lib/phlex-icons/version.rb +1 -1
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df9effad1e49e0425a64ce01ab1dae61df70c998acf61fcf167df5bfc56486e2
|
4
|
+
data.tar.gz: ed3ab644a7ea78925f2c7a30bdcba18a5b8877e1149ab08163641aa0811ee16c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24ed25edcc48f1f3838d4d98e02d9dca0deafe5202aec7412e360444a0a6a9fc8b1f31268c27702c2b56faf5965403043cf1a71acee7bc935526a589bd966395
|
7
|
+
data.tar.gz: ce219c348e7e356b984345ac8fd19f4a69fc87bc62d154b835f7546c5d2445afcb1579d5553cda3c4e6e7bb4196ceac3e7737eb8232fd6d0a62c33c66caeafe4
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class Barrel < 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(d: 'M10 3a41 41 0 0 0 0 18')
|
19
|
+
s.path(d: 'M14 3a41 41 0 0 1 0 18')
|
20
|
+
s.path(
|
21
|
+
d:
|
22
|
+
'M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z'
|
23
|
+
)
|
24
|
+
s.path(d: 'M3.84 17h16.32')
|
25
|
+
s.path(d: 'M3.84 7h16.32')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
# rubocop:enable Layout/LineLength
|
@@ -14,11 +14,11 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.rect(width: '7', height: '7', x: '14', y: '3', rx: '1')
|
18
17
|
s.path(
|
19
18
|
d:
|
20
|
-
'M10
|
19
|
+
'M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2'
|
21
20
|
)
|
21
|
+
s.rect(x: '14', y: '2', width: '8', height: '8', rx: '1')
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Metrics/MethodLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class Drone < 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(d: 'M10 10 7 7')
|
19
|
+
s.path(d: 'm10 14-3 3')
|
20
|
+
s.path(d: 'm14 10 3-3')
|
21
|
+
s.path(d: 'm14 14 3 3')
|
22
|
+
s.path(d: 'M14.205 4.139a4 4 0 1 1 5.439 5.863')
|
23
|
+
s.path(d: 'M19.637 14a4 4 0 1 1-5.432 5.868')
|
24
|
+
s.path(d: 'M4.367 10a4 4 0 1 1 5.438-5.862')
|
25
|
+
s.path(d: 'M9.795 19.862a4 4 0 1 1-5.429-5.873')
|
26
|
+
s.rect(x: '10', y: '8', width: '4', height: '8', rx: '1')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
# rubocop:enable Metrics/MethodLength
|
@@ -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 Egg < Base
|
@@ -14,14 +13,8 @@ module PhlexIcons
|
|
14
13
|
stroke_width: '2',
|
15
14
|
stroke_linecap: 'round',
|
16
15
|
stroke_linejoin: 'round'
|
17
|
-
)
|
18
|
-
s.path(
|
19
|
-
d:
|
20
|
-
'M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z'
|
21
|
-
)
|
22
|
-
end
|
16
|
+
) { |s| s.path(d: 'M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12') }
|
23
17
|
end
|
24
18
|
end
|
25
19
|
end
|
26
20
|
end
|
27
|
-
# rubocop:enable Layout/LineLength
|
@@ -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 EggOff < Base
|
@@ -15,18 +14,11 @@ module PhlexIcons
|
|
15
14
|
stroke_linecap: 'round',
|
16
15
|
stroke_linejoin: 'round'
|
17
16
|
) do |s|
|
18
|
-
s.path(
|
19
|
-
|
20
|
-
|
21
|
-
)
|
22
|
-
s.path(
|
23
|
-
d:
|
24
|
-
'M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297'
|
25
|
-
)
|
26
|
-
s.line(x1: '2', x2: '22', y1: '2', y2: '22')
|
17
|
+
s.path(d: 'm2 2 20 20')
|
18
|
+
s.path(d: 'M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19')
|
19
|
+
s.path(d: 'M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568')
|
27
20
|
end
|
28
21
|
end
|
29
22
|
end
|
30
23
|
end
|
31
24
|
end
|
32
|
-
# rubocop:enable Layout/LineLength
|
@@ -14,9 +14,9 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: 'M12
|
17
|
+
s.path(d: 'M12 19v3')
|
18
18
|
s.path(d: 'M19 10v2a7 7 0 0 1-14 0v-2')
|
19
|
-
s.
|
19
|
+
s.rect(x: '9', y: '2', width: '6', height: '13', rx: '3')
|
20
20
|
end
|
21
21
|
end
|
22
22
|
end
|
@@ -14,11 +14,8 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(
|
18
|
-
|
19
|
-
'M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z'
|
20
|
-
)
|
21
|
-
s.polyline(points: '8 10 12 14 16 10')
|
17
|
+
s.path(d: 'M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z')
|
18
|
+
s.path(d: 'm8 10 4 4 4-4')
|
22
19
|
end
|
23
20
|
end
|
24
21
|
end
|
@@ -14,11 +14,11 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: '
|
18
|
-
s.path(d: '
|
17
|
+
s.path(d: 'M16.247 7.761a6 6 0 0 1 0 8.478')
|
18
|
+
s.path(d: 'M19.075 4.933a10 10 0 0 1 0 14.134')
|
19
|
+
s.path(d: 'M4.925 19.067a10 10 0 0 1 0-14.134')
|
20
|
+
s.path(d: 'M7.753 16.239a6 6 0 0 1 0-8.478')
|
19
21
|
s.circle(cx: '12', cy: '12', r: '2')
|
20
|
-
s.path(d: 'M16.2 7.8c2.3 2.3 2.3 6.1 0 8.5')
|
21
|
-
s.path(d: 'M19.1 4.9C23 8.8 23 15.1 19.1 19')
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class RectangleCircle < 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 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z')
|
18
|
+
s.circle(cx: '14', cy: '12', r: '8')
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -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 Stamp < Base
|
@@ -15,17 +14,14 @@ module PhlexIcons
|
|
15
14
|
stroke_linecap: 'round',
|
16
15
|
stroke_linejoin: 'round'
|
17
16
|
) do |s|
|
18
|
-
s.path(d: '
|
17
|
+
s.path(d: 'M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13')
|
19
18
|
s.path(
|
20
19
|
d:
|
21
|
-
'
|
22
|
-
)
|
23
|
-
s.path(
|
24
|
-
d: 'M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-3-3c-1.66 0-3 1-3 3s1 2 1 3.5V13'
|
20
|
+
'M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z'
|
25
21
|
)
|
22
|
+
s.path(d: 'M5 22h14')
|
26
23
|
end
|
27
24
|
end
|
28
25
|
end
|
29
26
|
end
|
30
27
|
end
|
31
|
-
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Metrics/MethodLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class WifiCog < 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(d: 'm14.305 19.53.923-.382')
|
19
|
+
s.path(d: 'm15.228 16.852-.923-.383')
|
20
|
+
s.path(d: 'm16.852 15.228-.383-.923')
|
21
|
+
s.path(d: 'm16.852 20.772-.383.924')
|
22
|
+
s.path(d: 'm19.148 15.228.383-.923')
|
23
|
+
s.path(d: 'm19.53 21.696-.382-.924')
|
24
|
+
s.path(d: 'M2 7.82a15 15 0 0 1 20 0')
|
25
|
+
s.path(d: 'm20.772 16.852.924-.383')
|
26
|
+
s.path(d: 'm20.772 19.148.924.383')
|
27
|
+
s.path(d: 'M5 11.858a10 10 0 0 1 11.5-1.785')
|
28
|
+
s.path(d: 'M8.5 15.429a5 5 0 0 1 2.413-1.31')
|
29
|
+
s.circle(cx: '18', cy: '18', r: '3')
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
# rubocop:enable Metrics/MethodLength
|
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.518.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -126,7 +126,6 @@ module PhlexIcons
|
|
126
126
|
autoload :BadgeCheck, 'phlex-icons/lucide/badge_check'
|
127
127
|
autoload :BadgeDollarSign, 'phlex-icons/lucide/badge_dollar_sign'
|
128
128
|
autoload :BadgeEuro, 'phlex-icons/lucide/badge_euro'
|
129
|
-
autoload :BadgeHelp, 'phlex-icons/lucide/badge_help'
|
130
129
|
autoload :BadgeIndianRupee, 'phlex-icons/lucide/badge_indian_rupee'
|
131
130
|
autoload :BadgeInfo, 'phlex-icons/lucide/badge_info'
|
132
131
|
autoload :BadgeJapaneseYen, 'phlex-icons/lucide/badge_japanese_yen'
|
@@ -134,6 +133,7 @@ module PhlexIcons
|
|
134
133
|
autoload :BadgePercent, 'phlex-icons/lucide/badge_percent'
|
135
134
|
autoload :BadgePlus, 'phlex-icons/lucide/badge_plus'
|
136
135
|
autoload :BadgePoundSterling, 'phlex-icons/lucide/badge_pound_sterling'
|
136
|
+
autoload :BadgeQuestionMark, 'phlex-icons/lucide/badge_question_mark'
|
137
137
|
autoload :BadgeRussianRuble, 'phlex-icons/lucide/badge_russian_ruble'
|
138
138
|
autoload :BadgeSwissFranc, 'phlex-icons/lucide/badge_swiss_franc'
|
139
139
|
autoload :BadgeX, 'phlex-icons/lucide/badge_x'
|
@@ -146,6 +146,7 @@ module PhlexIcons
|
|
146
146
|
autoload :BanknoteArrowUp, 'phlex-icons/lucide/banknote_arrow_up'
|
147
147
|
autoload :BanknoteX, 'phlex-icons/lucide/banknote_x'
|
148
148
|
autoload :Barcode, 'phlex-icons/lucide/barcode'
|
149
|
+
autoload :Barrel, 'phlex-icons/lucide/barrel'
|
149
150
|
autoload :Baseline, 'phlex-icons/lucide/baseline'
|
150
151
|
autoload :Bath, 'phlex-icons/lucide/bath'
|
151
152
|
autoload :Battery, 'phlex-icons/lucide/battery'
|
@@ -373,7 +374,6 @@ module PhlexIcons
|
|
373
374
|
autoload :CircleFadingArrowUp, 'phlex-icons/lucide/circle_fading_arrow_up'
|
374
375
|
autoload :CircleFadingPlus, 'phlex-icons/lucide/circle_fading_plus'
|
375
376
|
autoload :CircleGauge, 'phlex-icons/lucide/circle_gauge'
|
376
|
-
autoload :CircleHelp, 'phlex-icons/lucide/circle_help'
|
377
377
|
autoload :CircleMinus, 'phlex-icons/lucide/circle_minus'
|
378
378
|
autoload :CircleOff, 'phlex-icons/lucide/circle_off'
|
379
379
|
autoload :CircleParking, 'phlex-icons/lucide/circle_parking'
|
@@ -384,6 +384,7 @@ module PhlexIcons
|
|
384
384
|
autoload :CirclePlus, 'phlex-icons/lucide/circle_plus'
|
385
385
|
autoload :CirclePoundSterling, 'phlex-icons/lucide/circle_pound_sterling'
|
386
386
|
autoload :CirclePower, 'phlex-icons/lucide/circle_power'
|
387
|
+
autoload :CircleQuestionMark, 'phlex-icons/lucide/circle_question_mark'
|
387
388
|
autoload :CircleSlash, 'phlex-icons/lucide/circle_slash'
|
388
389
|
autoload :CircleSlash2, 'phlex-icons/lucide/circle_slash_2'
|
389
390
|
autoload :CircleSmall, 'phlex-icons/lucide/circle_small'
|
@@ -538,6 +539,7 @@ module PhlexIcons
|
|
538
539
|
autoload :Drama, 'phlex-icons/lucide/drama'
|
539
540
|
autoload :Dribbble, 'phlex-icons/lucide/dribbble'
|
540
541
|
autoload :Drill, 'phlex-icons/lucide/drill'
|
542
|
+
autoload :Drone, 'phlex-icons/lucide/drone'
|
541
543
|
autoload :Droplet, 'phlex-icons/lucide/droplet'
|
542
544
|
autoload :DropletOff, 'phlex-icons/lucide/droplet_off'
|
543
545
|
autoload :Droplets, 'phlex-icons/lucide/droplets'
|
@@ -611,7 +613,7 @@ module PhlexIcons
|
|
611
613
|
autoload :FilePenLine, 'phlex-icons/lucide/file_pen_line'
|
612
614
|
autoload :FilePlus, 'phlex-icons/lucide/file_plus'
|
613
615
|
autoload :FilePlus2, 'phlex-icons/lucide/file_plus_2'
|
614
|
-
autoload :
|
616
|
+
autoload :FileQuestionMark, 'phlex-icons/lucide/file_question_mark'
|
615
617
|
autoload :FileScan, 'phlex-icons/lucide/file_scan'
|
616
618
|
autoload :FileSearch, 'phlex-icons/lucide/file_search'
|
617
619
|
autoload :FileSearch2, 'phlex-icons/lucide/file_search_2'
|
@@ -907,7 +909,7 @@ module PhlexIcons
|
|
907
909
|
autoload :MailMinus, 'phlex-icons/lucide/mail_minus'
|
908
910
|
autoload :MailOpen, 'phlex-icons/lucide/mail_open'
|
909
911
|
autoload :MailPlus, 'phlex-icons/lucide/mail_plus'
|
910
|
-
autoload :
|
912
|
+
autoload :MailQuestionMark, 'phlex-icons/lucide/mail_question_mark'
|
911
913
|
autoload :MailSearch, 'phlex-icons/lucide/mail_search'
|
912
914
|
autoload :MailWarning, 'phlex-icons/lucide/mail_warning'
|
913
915
|
autoload :MailX, 'phlex-icons/lucide/mail_x'
|
@@ -946,7 +948,7 @@ module PhlexIcons
|
|
946
948
|
autoload :MessageCircleMore, 'phlex-icons/lucide/message_circle_more'
|
947
949
|
autoload :MessageCircleOff, 'phlex-icons/lucide/message_circle_off'
|
948
950
|
autoload :MessageCirclePlus, 'phlex-icons/lucide/message_circle_plus'
|
949
|
-
autoload :
|
951
|
+
autoload :MessageCircleQuestionMark, 'phlex-icons/lucide/message_circle_question_mark'
|
950
952
|
autoload :MessageCircleReply, 'phlex-icons/lucide/message_circle_reply'
|
951
953
|
autoload :MessageCircleWarning, 'phlex-icons/lucide/message_circle_warning'
|
952
954
|
autoload :MessageCircleX, 'phlex-icons/lucide/message_circle_x'
|
@@ -1167,6 +1169,7 @@ module PhlexIcons
|
|
1167
1169
|
autoload :ReceiptRussianRuble, 'phlex-icons/lucide/receipt_russian_ruble'
|
1168
1170
|
autoload :ReceiptSwissFranc, 'phlex-icons/lucide/receipt_swiss_franc'
|
1169
1171
|
autoload :ReceiptText, 'phlex-icons/lucide/receipt_text'
|
1172
|
+
autoload :RectangleCircle, 'phlex-icons/lucide/rectangle_circle'
|
1170
1173
|
autoload :RectangleEllipsis, 'phlex-icons/lucide/rectangle_ellipsis'
|
1171
1174
|
autoload :RectangleGoggles, 'phlex-icons/lucide/rectangle_goggles'
|
1172
1175
|
autoload :RectangleHorizontal, 'phlex-icons/lucide/rectangle_horizontal'
|
@@ -1269,7 +1272,7 @@ module PhlexIcons
|
|
1269
1272
|
autoload :ShieldMinus, 'phlex-icons/lucide/shield_minus'
|
1270
1273
|
autoload :ShieldOff, 'phlex-icons/lucide/shield_off'
|
1271
1274
|
autoload :ShieldPlus, 'phlex-icons/lucide/shield_plus'
|
1272
|
-
autoload :
|
1275
|
+
autoload :ShieldQuestionMark, 'phlex-icons/lucide/shield_question_mark'
|
1273
1276
|
autoload :ShieldUser, 'phlex-icons/lucide/shield_user'
|
1274
1277
|
autoload :ShieldX, 'phlex-icons/lucide/shield_x'
|
1275
1278
|
autoload :Ship, 'phlex-icons/lucide/ship'
|
@@ -1591,6 +1594,7 @@ module PhlexIcons
|
|
1591
1594
|
autoload :WheatOff, 'phlex-icons/lucide/wheat_off'
|
1592
1595
|
autoload :WholeWord, 'phlex-icons/lucide/whole_word'
|
1593
1596
|
autoload :Wifi, 'phlex-icons/lucide/wifi'
|
1597
|
+
autoload :WifiCog, 'phlex-icons/lucide/wifi_cog'
|
1594
1598
|
autoload :WifiHigh, 'phlex-icons/lucide/wifi_high'
|
1595
1599
|
autoload :WifiLow, 'phlex-icons/lucide/wifi_low'
|
1596
1600
|
autoload :WifiOff, 'phlex-icons/lucide/wifi_off'
|
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.27.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-06-
|
11
|
+
date: 2025-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -171,7 +171,6 @@ files:
|
|
171
171
|
- lib/phlex-icons/lucide/badge_check.rb
|
172
172
|
- lib/phlex-icons/lucide/badge_dollar_sign.rb
|
173
173
|
- lib/phlex-icons/lucide/badge_euro.rb
|
174
|
-
- lib/phlex-icons/lucide/badge_help.rb
|
175
174
|
- lib/phlex-icons/lucide/badge_indian_rupee.rb
|
176
175
|
- lib/phlex-icons/lucide/badge_info.rb
|
177
176
|
- lib/phlex-icons/lucide/badge_japanese_yen.rb
|
@@ -179,6 +178,7 @@ files:
|
|
179
178
|
- lib/phlex-icons/lucide/badge_percent.rb
|
180
179
|
- lib/phlex-icons/lucide/badge_plus.rb
|
181
180
|
- lib/phlex-icons/lucide/badge_pound_sterling.rb
|
181
|
+
- lib/phlex-icons/lucide/badge_question_mark.rb
|
182
182
|
- lib/phlex-icons/lucide/badge_russian_ruble.rb
|
183
183
|
- lib/phlex-icons/lucide/badge_swiss_franc.rb
|
184
184
|
- lib/phlex-icons/lucide/badge_x.rb
|
@@ -191,6 +191,7 @@ files:
|
|
191
191
|
- lib/phlex-icons/lucide/banknote_arrow_up.rb
|
192
192
|
- lib/phlex-icons/lucide/banknote_x.rb
|
193
193
|
- lib/phlex-icons/lucide/barcode.rb
|
194
|
+
- lib/phlex-icons/lucide/barrel.rb
|
194
195
|
- lib/phlex-icons/lucide/base.rb
|
195
196
|
- lib/phlex-icons/lucide/baseline.rb
|
196
197
|
- lib/phlex-icons/lucide/bath.rb
|
@@ -419,7 +420,6 @@ files:
|
|
419
420
|
- lib/phlex-icons/lucide/circle_fading_arrow_up.rb
|
420
421
|
- lib/phlex-icons/lucide/circle_fading_plus.rb
|
421
422
|
- lib/phlex-icons/lucide/circle_gauge.rb
|
422
|
-
- lib/phlex-icons/lucide/circle_help.rb
|
423
423
|
- lib/phlex-icons/lucide/circle_minus.rb
|
424
424
|
- lib/phlex-icons/lucide/circle_off.rb
|
425
425
|
- lib/phlex-icons/lucide/circle_parking.rb
|
@@ -430,6 +430,7 @@ files:
|
|
430
430
|
- lib/phlex-icons/lucide/circle_plus.rb
|
431
431
|
- lib/phlex-icons/lucide/circle_pound_sterling.rb
|
432
432
|
- lib/phlex-icons/lucide/circle_power.rb
|
433
|
+
- lib/phlex-icons/lucide/circle_question_mark.rb
|
433
434
|
- lib/phlex-icons/lucide/circle_slash.rb
|
434
435
|
- lib/phlex-icons/lucide/circle_slash_2.rb
|
435
436
|
- lib/phlex-icons/lucide/circle_small.rb
|
@@ -584,6 +585,7 @@ files:
|
|
584
585
|
- lib/phlex-icons/lucide/drama.rb
|
585
586
|
- lib/phlex-icons/lucide/dribbble.rb
|
586
587
|
- lib/phlex-icons/lucide/drill.rb
|
588
|
+
- lib/phlex-icons/lucide/drone.rb
|
587
589
|
- lib/phlex-icons/lucide/droplet.rb
|
588
590
|
- lib/phlex-icons/lucide/droplet_off.rb
|
589
591
|
- lib/phlex-icons/lucide/droplets.rb
|
@@ -657,7 +659,7 @@ files:
|
|
657
659
|
- lib/phlex-icons/lucide/file_pen_line.rb
|
658
660
|
- lib/phlex-icons/lucide/file_plus.rb
|
659
661
|
- lib/phlex-icons/lucide/file_plus_2.rb
|
660
|
-
- lib/phlex-icons/lucide/
|
662
|
+
- lib/phlex-icons/lucide/file_question_mark.rb
|
661
663
|
- lib/phlex-icons/lucide/file_scan.rb
|
662
664
|
- lib/phlex-icons/lucide/file_search.rb
|
663
665
|
- lib/phlex-icons/lucide/file_search_2.rb
|
@@ -953,7 +955,7 @@ files:
|
|
953
955
|
- lib/phlex-icons/lucide/mail_minus.rb
|
954
956
|
- lib/phlex-icons/lucide/mail_open.rb
|
955
957
|
- lib/phlex-icons/lucide/mail_plus.rb
|
956
|
-
- lib/phlex-icons/lucide/
|
958
|
+
- lib/phlex-icons/lucide/mail_question_mark.rb
|
957
959
|
- lib/phlex-icons/lucide/mail_search.rb
|
958
960
|
- lib/phlex-icons/lucide/mail_warning.rb
|
959
961
|
- lib/phlex-icons/lucide/mail_x.rb
|
@@ -992,7 +994,7 @@ files:
|
|
992
994
|
- lib/phlex-icons/lucide/message_circle_more.rb
|
993
995
|
- lib/phlex-icons/lucide/message_circle_off.rb
|
994
996
|
- lib/phlex-icons/lucide/message_circle_plus.rb
|
995
|
-
- lib/phlex-icons/lucide/
|
997
|
+
- lib/phlex-icons/lucide/message_circle_question_mark.rb
|
996
998
|
- lib/phlex-icons/lucide/message_circle_reply.rb
|
997
999
|
- lib/phlex-icons/lucide/message_circle_warning.rb
|
998
1000
|
- lib/phlex-icons/lucide/message_circle_x.rb
|
@@ -1213,6 +1215,7 @@ files:
|
|
1213
1215
|
- lib/phlex-icons/lucide/receipt_russian_ruble.rb
|
1214
1216
|
- lib/phlex-icons/lucide/receipt_swiss_franc.rb
|
1215
1217
|
- lib/phlex-icons/lucide/receipt_text.rb
|
1218
|
+
- lib/phlex-icons/lucide/rectangle_circle.rb
|
1216
1219
|
- lib/phlex-icons/lucide/rectangle_ellipsis.rb
|
1217
1220
|
- lib/phlex-icons/lucide/rectangle_goggles.rb
|
1218
1221
|
- lib/phlex-icons/lucide/rectangle_horizontal.rb
|
@@ -1315,7 +1318,7 @@ files:
|
|
1315
1318
|
- lib/phlex-icons/lucide/shield_minus.rb
|
1316
1319
|
- lib/phlex-icons/lucide/shield_off.rb
|
1317
1320
|
- lib/phlex-icons/lucide/shield_plus.rb
|
1318
|
-
- lib/phlex-icons/lucide/
|
1321
|
+
- lib/phlex-icons/lucide/shield_question_mark.rb
|
1319
1322
|
- lib/phlex-icons/lucide/shield_user.rb
|
1320
1323
|
- lib/phlex-icons/lucide/shield_x.rb
|
1321
1324
|
- lib/phlex-icons/lucide/ship.rb
|
@@ -1637,6 +1640,7 @@ files:
|
|
1637
1640
|
- lib/phlex-icons/lucide/wheat_off.rb
|
1638
1641
|
- lib/phlex-icons/lucide/whole_word.rb
|
1639
1642
|
- lib/phlex-icons/lucide/wifi.rb
|
1643
|
+
- lib/phlex-icons/lucide/wifi_cog.rb
|
1640
1644
|
- lib/phlex-icons/lucide/wifi_high.rb
|
1641
1645
|
- lib/phlex-icons/lucide/wifi_low.rb
|
1642
1646
|
- lib/phlex-icons/lucide/wifi_off.rb
|