phlex-icons 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: 6d93e7052a62420b57c0ada42d370f531441c8b8da893ab0136e60fb059fb2b7
|
4
|
+
data.tar.gz: d2e51f2673e62ed53f193a52e713c4ef3e22d36c4d159f8439bda831b0a22785
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eebdb31264f9c2acbb4ad0b8f94fe258f9064467adbeb720b13085bce8cac60c13fea2bfc3701f287d0c5678137a7fda90ddd36498f3fb20e417bafa6b67eb97
|
7
|
+
data.tar.gz: 97a424096354ade57bb01dfe0341954cb821a2332032d17025cc31fb17cf3271f8a2a1c0552ed38e90dbcc03ce60d3e4fb7af1579ab961bb390c934f988fdbf7
|
@@ -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
|
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
|
@@ -4042,7 +4042,6 @@ files:
|
|
4042
4042
|
- lib/phlex-icons/lucide/badge_check.rb
|
4043
4043
|
- lib/phlex-icons/lucide/badge_dollar_sign.rb
|
4044
4044
|
- lib/phlex-icons/lucide/badge_euro.rb
|
4045
|
-
- lib/phlex-icons/lucide/badge_help.rb
|
4046
4045
|
- lib/phlex-icons/lucide/badge_indian_rupee.rb
|
4047
4046
|
- lib/phlex-icons/lucide/badge_info.rb
|
4048
4047
|
- lib/phlex-icons/lucide/badge_japanese_yen.rb
|
@@ -4050,6 +4049,7 @@ files:
|
|
4050
4049
|
- lib/phlex-icons/lucide/badge_percent.rb
|
4051
4050
|
- lib/phlex-icons/lucide/badge_plus.rb
|
4052
4051
|
- lib/phlex-icons/lucide/badge_pound_sterling.rb
|
4052
|
+
- lib/phlex-icons/lucide/badge_question_mark.rb
|
4053
4053
|
- lib/phlex-icons/lucide/badge_russian_ruble.rb
|
4054
4054
|
- lib/phlex-icons/lucide/badge_swiss_franc.rb
|
4055
4055
|
- lib/phlex-icons/lucide/badge_x.rb
|
@@ -4062,6 +4062,7 @@ files:
|
|
4062
4062
|
- lib/phlex-icons/lucide/banknote_arrow_up.rb
|
4063
4063
|
- lib/phlex-icons/lucide/banknote_x.rb
|
4064
4064
|
- lib/phlex-icons/lucide/barcode.rb
|
4065
|
+
- lib/phlex-icons/lucide/barrel.rb
|
4065
4066
|
- lib/phlex-icons/lucide/base.rb
|
4066
4067
|
- lib/phlex-icons/lucide/baseline.rb
|
4067
4068
|
- lib/phlex-icons/lucide/bath.rb
|
@@ -4290,7 +4291,6 @@ files:
|
|
4290
4291
|
- lib/phlex-icons/lucide/circle_fading_arrow_up.rb
|
4291
4292
|
- lib/phlex-icons/lucide/circle_fading_plus.rb
|
4292
4293
|
- lib/phlex-icons/lucide/circle_gauge.rb
|
4293
|
-
- lib/phlex-icons/lucide/circle_help.rb
|
4294
4294
|
- lib/phlex-icons/lucide/circle_minus.rb
|
4295
4295
|
- lib/phlex-icons/lucide/circle_off.rb
|
4296
4296
|
- lib/phlex-icons/lucide/circle_parking.rb
|
@@ -4301,6 +4301,7 @@ files:
|
|
4301
4301
|
- lib/phlex-icons/lucide/circle_plus.rb
|
4302
4302
|
- lib/phlex-icons/lucide/circle_pound_sterling.rb
|
4303
4303
|
- lib/phlex-icons/lucide/circle_power.rb
|
4304
|
+
- lib/phlex-icons/lucide/circle_question_mark.rb
|
4304
4305
|
- lib/phlex-icons/lucide/circle_slash.rb
|
4305
4306
|
- lib/phlex-icons/lucide/circle_slash_2.rb
|
4306
4307
|
- lib/phlex-icons/lucide/circle_small.rb
|
@@ -4455,6 +4456,7 @@ files:
|
|
4455
4456
|
- lib/phlex-icons/lucide/drama.rb
|
4456
4457
|
- lib/phlex-icons/lucide/dribbble.rb
|
4457
4458
|
- lib/phlex-icons/lucide/drill.rb
|
4459
|
+
- lib/phlex-icons/lucide/drone.rb
|
4458
4460
|
- lib/phlex-icons/lucide/droplet.rb
|
4459
4461
|
- lib/phlex-icons/lucide/droplet_off.rb
|
4460
4462
|
- lib/phlex-icons/lucide/droplets.rb
|
@@ -4528,7 +4530,7 @@ files:
|
|
4528
4530
|
- lib/phlex-icons/lucide/file_pen_line.rb
|
4529
4531
|
- lib/phlex-icons/lucide/file_plus.rb
|
4530
4532
|
- lib/phlex-icons/lucide/file_plus_2.rb
|
4531
|
-
- lib/phlex-icons/lucide/
|
4533
|
+
- lib/phlex-icons/lucide/file_question_mark.rb
|
4532
4534
|
- lib/phlex-icons/lucide/file_scan.rb
|
4533
4535
|
- lib/phlex-icons/lucide/file_search.rb
|
4534
4536
|
- lib/phlex-icons/lucide/file_search_2.rb
|
@@ -4824,7 +4826,7 @@ files:
|
|
4824
4826
|
- lib/phlex-icons/lucide/mail_minus.rb
|
4825
4827
|
- lib/phlex-icons/lucide/mail_open.rb
|
4826
4828
|
- lib/phlex-icons/lucide/mail_plus.rb
|
4827
|
-
- lib/phlex-icons/lucide/
|
4829
|
+
- lib/phlex-icons/lucide/mail_question_mark.rb
|
4828
4830
|
- lib/phlex-icons/lucide/mail_search.rb
|
4829
4831
|
- lib/phlex-icons/lucide/mail_warning.rb
|
4830
4832
|
- lib/phlex-icons/lucide/mail_x.rb
|
@@ -4863,7 +4865,7 @@ files:
|
|
4863
4865
|
- lib/phlex-icons/lucide/message_circle_more.rb
|
4864
4866
|
- lib/phlex-icons/lucide/message_circle_off.rb
|
4865
4867
|
- lib/phlex-icons/lucide/message_circle_plus.rb
|
4866
|
-
- lib/phlex-icons/lucide/
|
4868
|
+
- lib/phlex-icons/lucide/message_circle_question_mark.rb
|
4867
4869
|
- lib/phlex-icons/lucide/message_circle_reply.rb
|
4868
4870
|
- lib/phlex-icons/lucide/message_circle_warning.rb
|
4869
4871
|
- lib/phlex-icons/lucide/message_circle_x.rb
|
@@ -5084,6 +5086,7 @@ files:
|
|
5084
5086
|
- lib/phlex-icons/lucide/receipt_russian_ruble.rb
|
5085
5087
|
- lib/phlex-icons/lucide/receipt_swiss_franc.rb
|
5086
5088
|
- lib/phlex-icons/lucide/receipt_text.rb
|
5089
|
+
- lib/phlex-icons/lucide/rectangle_circle.rb
|
5087
5090
|
- lib/phlex-icons/lucide/rectangle_ellipsis.rb
|
5088
5091
|
- lib/phlex-icons/lucide/rectangle_goggles.rb
|
5089
5092
|
- lib/phlex-icons/lucide/rectangle_horizontal.rb
|
@@ -5186,7 +5189,7 @@ files:
|
|
5186
5189
|
- lib/phlex-icons/lucide/shield_minus.rb
|
5187
5190
|
- lib/phlex-icons/lucide/shield_off.rb
|
5188
5191
|
- lib/phlex-icons/lucide/shield_plus.rb
|
5189
|
-
- lib/phlex-icons/lucide/
|
5192
|
+
- lib/phlex-icons/lucide/shield_question_mark.rb
|
5190
5193
|
- lib/phlex-icons/lucide/shield_user.rb
|
5191
5194
|
- lib/phlex-icons/lucide/shield_x.rb
|
5192
5195
|
- lib/phlex-icons/lucide/ship.rb
|
@@ -5508,6 +5511,7 @@ files:
|
|
5508
5511
|
- lib/phlex-icons/lucide/wheat_off.rb
|
5509
5512
|
- lib/phlex-icons/lucide/whole_word.rb
|
5510
5513
|
- lib/phlex-icons/lucide/wifi.rb
|
5514
|
+
- lib/phlex-icons/lucide/wifi_cog.rb
|
5511
5515
|
- lib/phlex-icons/lucide/wifi_high.rb
|
5512
5516
|
- lib/phlex-icons/lucide/wifi_low.rb
|
5513
5517
|
- lib/phlex-icons/lucide/wifi_off.rb
|