phlex-icons 2.25.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/book_alert.rb +27 -0
- 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/house_plus.rb +6 -4
- 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/radiation.rb +3 -3
- data/lib/phlex-icons/lucide/radio.rb +4 -4
- data/lib/phlex-icons/lucide/rectangle_circle.rb +23 -0
- data/lib/phlex-icons/lucide/settings_2.rb +1 -1
- 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/trophy.rb +5 -5
- data/lib/phlex-icons/lucide/wifi_cog.rb +35 -0
- data/lib/phlex-icons/lucide.rb +12 -7
- data/lib/phlex-icons/version.rb +1 -1
- metadata +13 -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,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class BookAlert < 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 13h.01')
|
18
|
+
s.path(d: 'M12 6v3')
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20'
|
22
|
+
)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
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
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
3
4
|
module PhlexIcons
|
4
5
|
module Lucide
|
5
6
|
class HousePlus < Base
|
@@ -16,13 +17,14 @@ module PhlexIcons
|
|
16
17
|
) do |s|
|
17
18
|
s.path(
|
18
19
|
d:
|
19
|
-
'
|
20
|
+
'M12.662 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v2.475'
|
20
21
|
)
|
21
|
-
s.path(d: '
|
22
|
-
s.path(d: 'M15
|
23
|
-
s.path(d: 'M18
|
22
|
+
s.path(d: 'M14.959 12.717A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8')
|
23
|
+
s.path(d: 'M15 18h6')
|
24
|
+
s.path(d: 'M18 15v6')
|
24
25
|
end
|
25
26
|
end
|
26
27
|
end
|
27
28
|
end
|
28
29
|
end
|
30
|
+
# 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
|
@@ -18,15 +18,15 @@ module PhlexIcons
|
|
18
18
|
s.path(d: 'M12 12h.01')
|
19
19
|
s.path(
|
20
20
|
d:
|
21
|
-
'
|
21
|
+
'M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z'
|
22
22
|
)
|
23
23
|
s.path(
|
24
24
|
d:
|
25
|
-
'
|
25
|
+
'M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z'
|
26
26
|
)
|
27
27
|
s.path(
|
28
28
|
d:
|
29
|
-
'
|
29
|
+
'M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z'
|
30
30
|
)
|
31
31
|
end
|
32
32
|
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
|
@@ -14,12 +14,12 @@ 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: 'M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978')
|
18
|
+
s.path(d: 'M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978')
|
19
|
+
s.path(d: 'M18 9h1.5a1 1 0 0 0 0-5H18')
|
19
20
|
s.path(d: 'M4 22h16')
|
20
|
-
s.path(d: '
|
21
|
-
s.path(d: '
|
22
|
-
s.path(d: 'M18 2H6v7a6 6 0 0 0 12 0V2Z')
|
21
|
+
s.path(d: 'M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z')
|
22
|
+
s.path(d: 'M6 9H4.5a1 1 0 0 1 0-5H6')
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -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'
|
@@ -195,6 +196,7 @@ module PhlexIcons
|
|
195
196
|
autoload :Bone, 'phlex-icons/lucide/bone'
|
196
197
|
autoload :Book, 'phlex-icons/lucide/book'
|
197
198
|
autoload :BookA, 'phlex-icons/lucide/book_a'
|
199
|
+
autoload :BookAlert, 'phlex-icons/lucide/book_alert'
|
198
200
|
autoload :BookAudio, 'phlex-icons/lucide/book_audio'
|
199
201
|
autoload :BookCheck, 'phlex-icons/lucide/book_check'
|
200
202
|
autoload :BookCopy, 'phlex-icons/lucide/book_copy'
|
@@ -372,7 +374,6 @@ module PhlexIcons
|
|
372
374
|
autoload :CircleFadingArrowUp, 'phlex-icons/lucide/circle_fading_arrow_up'
|
373
375
|
autoload :CircleFadingPlus, 'phlex-icons/lucide/circle_fading_plus'
|
374
376
|
autoload :CircleGauge, 'phlex-icons/lucide/circle_gauge'
|
375
|
-
autoload :CircleHelp, 'phlex-icons/lucide/circle_help'
|
376
377
|
autoload :CircleMinus, 'phlex-icons/lucide/circle_minus'
|
377
378
|
autoload :CircleOff, 'phlex-icons/lucide/circle_off'
|
378
379
|
autoload :CircleParking, 'phlex-icons/lucide/circle_parking'
|
@@ -383,6 +384,7 @@ module PhlexIcons
|
|
383
384
|
autoload :CirclePlus, 'phlex-icons/lucide/circle_plus'
|
384
385
|
autoload :CirclePoundSterling, 'phlex-icons/lucide/circle_pound_sterling'
|
385
386
|
autoload :CirclePower, 'phlex-icons/lucide/circle_power'
|
387
|
+
autoload :CircleQuestionMark, 'phlex-icons/lucide/circle_question_mark'
|
386
388
|
autoload :CircleSlash, 'phlex-icons/lucide/circle_slash'
|
387
389
|
autoload :CircleSlash2, 'phlex-icons/lucide/circle_slash_2'
|
388
390
|
autoload :CircleSmall, 'phlex-icons/lucide/circle_small'
|
@@ -537,6 +539,7 @@ module PhlexIcons
|
|
537
539
|
autoload :Drama, 'phlex-icons/lucide/drama'
|
538
540
|
autoload :Dribbble, 'phlex-icons/lucide/dribbble'
|
539
541
|
autoload :Drill, 'phlex-icons/lucide/drill'
|
542
|
+
autoload :Drone, 'phlex-icons/lucide/drone'
|
540
543
|
autoload :Droplet, 'phlex-icons/lucide/droplet'
|
541
544
|
autoload :DropletOff, 'phlex-icons/lucide/droplet_off'
|
542
545
|
autoload :Droplets, 'phlex-icons/lucide/droplets'
|
@@ -610,7 +613,7 @@ module PhlexIcons
|
|
610
613
|
autoload :FilePenLine, 'phlex-icons/lucide/file_pen_line'
|
611
614
|
autoload :FilePlus, 'phlex-icons/lucide/file_plus'
|
612
615
|
autoload :FilePlus2, 'phlex-icons/lucide/file_plus_2'
|
613
|
-
autoload :
|
616
|
+
autoload :FileQuestionMark, 'phlex-icons/lucide/file_question_mark'
|
614
617
|
autoload :FileScan, 'phlex-icons/lucide/file_scan'
|
615
618
|
autoload :FileSearch, 'phlex-icons/lucide/file_search'
|
616
619
|
autoload :FileSearch2, 'phlex-icons/lucide/file_search_2'
|
@@ -906,7 +909,7 @@ module PhlexIcons
|
|
906
909
|
autoload :MailMinus, 'phlex-icons/lucide/mail_minus'
|
907
910
|
autoload :MailOpen, 'phlex-icons/lucide/mail_open'
|
908
911
|
autoload :MailPlus, 'phlex-icons/lucide/mail_plus'
|
909
|
-
autoload :
|
912
|
+
autoload :MailQuestionMark, 'phlex-icons/lucide/mail_question_mark'
|
910
913
|
autoload :MailSearch, 'phlex-icons/lucide/mail_search'
|
911
914
|
autoload :MailWarning, 'phlex-icons/lucide/mail_warning'
|
912
915
|
autoload :MailX, 'phlex-icons/lucide/mail_x'
|
@@ -945,7 +948,7 @@ module PhlexIcons
|
|
945
948
|
autoload :MessageCircleMore, 'phlex-icons/lucide/message_circle_more'
|
946
949
|
autoload :MessageCircleOff, 'phlex-icons/lucide/message_circle_off'
|
947
950
|
autoload :MessageCirclePlus, 'phlex-icons/lucide/message_circle_plus'
|
948
|
-
autoload :
|
951
|
+
autoload :MessageCircleQuestionMark, 'phlex-icons/lucide/message_circle_question_mark'
|
949
952
|
autoload :MessageCircleReply, 'phlex-icons/lucide/message_circle_reply'
|
950
953
|
autoload :MessageCircleWarning, 'phlex-icons/lucide/message_circle_warning'
|
951
954
|
autoload :MessageCircleX, 'phlex-icons/lucide/message_circle_x'
|
@@ -1166,6 +1169,7 @@ module PhlexIcons
|
|
1166
1169
|
autoload :ReceiptRussianRuble, 'phlex-icons/lucide/receipt_russian_ruble'
|
1167
1170
|
autoload :ReceiptSwissFranc, 'phlex-icons/lucide/receipt_swiss_franc'
|
1168
1171
|
autoload :ReceiptText, 'phlex-icons/lucide/receipt_text'
|
1172
|
+
autoload :RectangleCircle, 'phlex-icons/lucide/rectangle_circle'
|
1169
1173
|
autoload :RectangleEllipsis, 'phlex-icons/lucide/rectangle_ellipsis'
|
1170
1174
|
autoload :RectangleGoggles, 'phlex-icons/lucide/rectangle_goggles'
|
1171
1175
|
autoload :RectangleHorizontal, 'phlex-icons/lucide/rectangle_horizontal'
|
@@ -1268,7 +1272,7 @@ module PhlexIcons
|
|
1268
1272
|
autoload :ShieldMinus, 'phlex-icons/lucide/shield_minus'
|
1269
1273
|
autoload :ShieldOff, 'phlex-icons/lucide/shield_off'
|
1270
1274
|
autoload :ShieldPlus, 'phlex-icons/lucide/shield_plus'
|
1271
|
-
autoload :
|
1275
|
+
autoload :ShieldQuestionMark, 'phlex-icons/lucide/shield_question_mark'
|
1272
1276
|
autoload :ShieldUser, 'phlex-icons/lucide/shield_user'
|
1273
1277
|
autoload :ShieldX, 'phlex-icons/lucide/shield_x'
|
1274
1278
|
autoload :Ship, 'phlex-icons/lucide/ship'
|
@@ -1590,6 +1594,7 @@ module PhlexIcons
|
|
1590
1594
|
autoload :WheatOff, 'phlex-icons/lucide/wheat_off'
|
1591
1595
|
autoload :WholeWord, 'phlex-icons/lucide/whole_word'
|
1592
1596
|
autoload :Wifi, 'phlex-icons/lucide/wifi'
|
1597
|
+
autoload :WifiCog, 'phlex-icons/lucide/wifi_cog'
|
1593
1598
|
autoload :WifiHigh, 'phlex-icons/lucide/wifi_high'
|
1594
1599
|
autoload :WifiLow, 'phlex-icons/lucide/wifi_low'
|
1595
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
|
@@ -4112,6 +4113,7 @@ files:
|
|
4112
4113
|
- lib/phlex-icons/lucide/bone.rb
|
4113
4114
|
- lib/phlex-icons/lucide/book.rb
|
4114
4115
|
- lib/phlex-icons/lucide/book_a.rb
|
4116
|
+
- lib/phlex-icons/lucide/book_alert.rb
|
4115
4117
|
- lib/phlex-icons/lucide/book_audio.rb
|
4116
4118
|
- lib/phlex-icons/lucide/book_check.rb
|
4117
4119
|
- lib/phlex-icons/lucide/book_copy.rb
|
@@ -4289,7 +4291,6 @@ files:
|
|
4289
4291
|
- lib/phlex-icons/lucide/circle_fading_arrow_up.rb
|
4290
4292
|
- lib/phlex-icons/lucide/circle_fading_plus.rb
|
4291
4293
|
- lib/phlex-icons/lucide/circle_gauge.rb
|
4292
|
-
- lib/phlex-icons/lucide/circle_help.rb
|
4293
4294
|
- lib/phlex-icons/lucide/circle_minus.rb
|
4294
4295
|
- lib/phlex-icons/lucide/circle_off.rb
|
4295
4296
|
- lib/phlex-icons/lucide/circle_parking.rb
|
@@ -4300,6 +4301,7 @@ files:
|
|
4300
4301
|
- lib/phlex-icons/lucide/circle_plus.rb
|
4301
4302
|
- lib/phlex-icons/lucide/circle_pound_sterling.rb
|
4302
4303
|
- lib/phlex-icons/lucide/circle_power.rb
|
4304
|
+
- lib/phlex-icons/lucide/circle_question_mark.rb
|
4303
4305
|
- lib/phlex-icons/lucide/circle_slash.rb
|
4304
4306
|
- lib/phlex-icons/lucide/circle_slash_2.rb
|
4305
4307
|
- lib/phlex-icons/lucide/circle_small.rb
|
@@ -4454,6 +4456,7 @@ files:
|
|
4454
4456
|
- lib/phlex-icons/lucide/drama.rb
|
4455
4457
|
- lib/phlex-icons/lucide/dribbble.rb
|
4456
4458
|
- lib/phlex-icons/lucide/drill.rb
|
4459
|
+
- lib/phlex-icons/lucide/drone.rb
|
4457
4460
|
- lib/phlex-icons/lucide/droplet.rb
|
4458
4461
|
- lib/phlex-icons/lucide/droplet_off.rb
|
4459
4462
|
- lib/phlex-icons/lucide/droplets.rb
|
@@ -4527,7 +4530,7 @@ files:
|
|
4527
4530
|
- lib/phlex-icons/lucide/file_pen_line.rb
|
4528
4531
|
- lib/phlex-icons/lucide/file_plus.rb
|
4529
4532
|
- lib/phlex-icons/lucide/file_plus_2.rb
|
4530
|
-
- lib/phlex-icons/lucide/
|
4533
|
+
- lib/phlex-icons/lucide/file_question_mark.rb
|
4531
4534
|
- lib/phlex-icons/lucide/file_scan.rb
|
4532
4535
|
- lib/phlex-icons/lucide/file_search.rb
|
4533
4536
|
- lib/phlex-icons/lucide/file_search_2.rb
|
@@ -4823,7 +4826,7 @@ files:
|
|
4823
4826
|
- lib/phlex-icons/lucide/mail_minus.rb
|
4824
4827
|
- lib/phlex-icons/lucide/mail_open.rb
|
4825
4828
|
- lib/phlex-icons/lucide/mail_plus.rb
|
4826
|
-
- lib/phlex-icons/lucide/
|
4829
|
+
- lib/phlex-icons/lucide/mail_question_mark.rb
|
4827
4830
|
- lib/phlex-icons/lucide/mail_search.rb
|
4828
4831
|
- lib/phlex-icons/lucide/mail_warning.rb
|
4829
4832
|
- lib/phlex-icons/lucide/mail_x.rb
|
@@ -4862,7 +4865,7 @@ files:
|
|
4862
4865
|
- lib/phlex-icons/lucide/message_circle_more.rb
|
4863
4866
|
- lib/phlex-icons/lucide/message_circle_off.rb
|
4864
4867
|
- lib/phlex-icons/lucide/message_circle_plus.rb
|
4865
|
-
- lib/phlex-icons/lucide/
|
4868
|
+
- lib/phlex-icons/lucide/message_circle_question_mark.rb
|
4866
4869
|
- lib/phlex-icons/lucide/message_circle_reply.rb
|
4867
4870
|
- lib/phlex-icons/lucide/message_circle_warning.rb
|
4868
4871
|
- lib/phlex-icons/lucide/message_circle_x.rb
|
@@ -5083,6 +5086,7 @@ files:
|
|
5083
5086
|
- lib/phlex-icons/lucide/receipt_russian_ruble.rb
|
5084
5087
|
- lib/phlex-icons/lucide/receipt_swiss_franc.rb
|
5085
5088
|
- lib/phlex-icons/lucide/receipt_text.rb
|
5089
|
+
- lib/phlex-icons/lucide/rectangle_circle.rb
|
5086
5090
|
- lib/phlex-icons/lucide/rectangle_ellipsis.rb
|
5087
5091
|
- lib/phlex-icons/lucide/rectangle_goggles.rb
|
5088
5092
|
- lib/phlex-icons/lucide/rectangle_horizontal.rb
|
@@ -5185,7 +5189,7 @@ files:
|
|
5185
5189
|
- lib/phlex-icons/lucide/shield_minus.rb
|
5186
5190
|
- lib/phlex-icons/lucide/shield_off.rb
|
5187
5191
|
- lib/phlex-icons/lucide/shield_plus.rb
|
5188
|
-
- lib/phlex-icons/lucide/
|
5192
|
+
- lib/phlex-icons/lucide/shield_question_mark.rb
|
5189
5193
|
- lib/phlex-icons/lucide/shield_user.rb
|
5190
5194
|
- lib/phlex-icons/lucide/shield_x.rb
|
5191
5195
|
- lib/phlex-icons/lucide/ship.rb
|
@@ -5507,6 +5511,7 @@ files:
|
|
5507
5511
|
- lib/phlex-icons/lucide/wheat_off.rb
|
5508
5512
|
- lib/phlex-icons/lucide/whole_word.rb
|
5509
5513
|
- lib/phlex-icons/lucide/wifi.rb
|
5514
|
+
- lib/phlex-icons/lucide/wifi_cog.rb
|
5510
5515
|
- lib/phlex-icons/lucide/wifi_high.rb
|
5511
5516
|
- lib/phlex-icons/lucide/wifi_low.rb
|
5512
5517
|
- lib/phlex-icons/lucide/wifi_off.rb
|