phlex-icons 2.34.0 → 2.36.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/building.rb +5 -5
- data/lib/phlex-icons/lucide/camera.rb +3 -1
- data/lib/phlex-icons/lucide/camera_off.rb +9 -4
- data/lib/phlex-icons/lucide/{chrome.rb → chromium.rb} +4 -4
- data/lib/phlex-icons/lucide/cog.rb +9 -9
- data/lib/phlex-icons/lucide/list_chevrons_down_up.rb +26 -0
- data/lib/phlex-icons/lucide/panel_left_right_dashed.rb +32 -0
- data/lib/phlex-icons/lucide/panel_top_bottom_dashed.rb +32 -0
- data/lib/phlex-icons/lucide/rose.rb +31 -0
- data/lib/phlex-icons/lucide/umbrella.rb +6 -3
- data/lib/phlex-icons/lucide/umbrella_off.rb +6 -3
- data/lib/phlex-icons/lucide/wallpaper.rb +4 -6
- data/lib/phlex-icons/lucide.rb +6 -2
- data/lib/phlex-icons/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6933d0e58ab34ebd801a08ecc38fd47c2e7c4e32055ddc9ecf106a2f0901b71e
|
4
|
+
data.tar.gz: d7d3e112aae9ad11c24fc3d46d30deb82d12aa9bf5d937871027db145e8bd60e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17d269af3ad465fcc88cbdcdec6eccb0d85832f47d93ba64ddc2ce1daa6c984e3622246e0ffe9acdadeec6e16d24c4994f13e822b1e5ab7a3d25d9dc11755725
|
7
|
+
data.tar.gz: b2334e10c8a8190acbf7c73b08f174b9240dc85364e684b5e516b20cdd26af0415bbdb024c215e4b0464ba0b7fac142b927e74752b90af30760c61000e76375c
|
@@ -15,17 +15,17 @@ module PhlexIcons
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.rect(width: '16', height: '20', x: '4', y: '2', rx: '2', ry: '2')
|
19
|
-
s.path(d: 'M9 22v-4h6v4')
|
20
|
-
s.path(d: 'M8 6h.01')
|
21
|
-
s.path(d: 'M16 6h.01')
|
22
|
-
s.path(d: 'M12 6h.01')
|
23
18
|
s.path(d: 'M12 10h.01')
|
24
19
|
s.path(d: 'M12 14h.01')
|
20
|
+
s.path(d: 'M12 6h.01')
|
25
21
|
s.path(d: 'M16 10h.01')
|
26
22
|
s.path(d: 'M16 14h.01')
|
23
|
+
s.path(d: 'M16 6h.01')
|
27
24
|
s.path(d: 'M8 10h.01')
|
28
25
|
s.path(d: 'M8 14h.01')
|
26
|
+
s.path(d: 'M8 6h.01')
|
27
|
+
s.path(d: 'M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3')
|
28
|
+
s.rect(x: '4', y: '2', width: '16', height: '20', rx: '2')
|
29
29
|
end
|
30
30
|
end
|
31
31
|
end
|
@@ -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 Camera < Base
|
@@ -16,7 +17,7 @@ module PhlexIcons
|
|
16
17
|
) do |s|
|
17
18
|
s.path(
|
18
19
|
d:
|
19
|
-
'
|
20
|
+
'M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z'
|
20
21
|
)
|
21
22
|
s.circle(cx: '12', cy: '13', r: '3')
|
22
23
|
end
|
@@ -24,3 +25,4 @@ module PhlexIcons
|
|
24
25
|
end
|
25
26
|
end
|
26
27
|
end
|
28
|
+
# 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 CameraOff < Base
|
@@ -14,12 +15,16 @@ module PhlexIcons
|
|
14
15
|
stroke_linecap: 'round',
|
15
16
|
stroke_linejoin: 'round'
|
16
17
|
) do |s|
|
17
|
-
s.
|
18
|
-
s.path(d: '
|
19
|
-
s.path(d: '
|
20
|
-
s.path(
|
18
|
+
s.path(d: 'M14.564 14.558a3 3 0 1 1-4.122-4.121')
|
19
|
+
s.path(d: 'm2 2 20 20')
|
20
|
+
s.path(d: 'M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175')
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344'
|
24
|
+
)
|
21
25
|
end
|
22
26
|
end
|
23
27
|
end
|
24
28
|
end
|
25
29
|
end
|
30
|
+
# rubocop:enable Layout/LineLength
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module PhlexIcons
|
4
4
|
module Lucide
|
5
|
-
class
|
5
|
+
class Chromium < Base
|
6
6
|
def view_template
|
7
7
|
svg(
|
8
8
|
**attrs,
|
@@ -14,11 +14,11 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
+
s.path(d: 'M10.88 21.94 15.46 14')
|
18
|
+
s.path(d: 'M21.17 8H12')
|
19
|
+
s.path(d: 'M3.95 6.06 8.54 14')
|
17
20
|
s.circle(cx: '12', cy: '12', r: '10')
|
18
21
|
s.circle(cx: '12', cy: '12', r: '4')
|
19
|
-
s.line(x1: '21.17', x2: '12', y1: '8', y2: '8')
|
20
|
-
s.line(x1: '3.95', x2: '8.54', y1: '6.06', y2: '14')
|
21
|
-
s.line(x1: '10.88', x2: '15.46', y1: '21.94', y2: '14')
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -15,20 +15,20 @@ module PhlexIcons
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.path(d: 'M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z')
|
19
|
-
s.path(d: 'M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z')
|
20
|
-
s.path(d: 'M12 2v2')
|
21
|
-
s.path(d: 'M12 22v-2')
|
22
|
-
s.path(d: 'm17 20.66-1-1.73')
|
23
18
|
s.path(d: 'M11 10.27 7 3.34')
|
24
|
-
s.path(d: '
|
25
|
-
s.path(d: '
|
19
|
+
s.path(d: 'm11 13.73-4 6.93')
|
20
|
+
s.path(d: 'M12 22v-2')
|
21
|
+
s.path(d: 'M12 2v2')
|
26
22
|
s.path(d: 'M14 12h8')
|
23
|
+
s.path(d: 'm17 20.66-1-1.73')
|
24
|
+
s.path(d: 'm17 3.34-1 1.73')
|
27
25
|
s.path(d: 'M2 12h2')
|
26
|
+
s.path(d: 'm20.66 17-1.73-1')
|
28
27
|
s.path(d: 'm20.66 7-1.73 1')
|
29
28
|
s.path(d: 'm3.34 17 1.73-1')
|
30
|
-
s.path(d: '
|
31
|
-
s.
|
29
|
+
s.path(d: 'm3.34 7 1.73 1')
|
30
|
+
s.circle(cx: '12', cy: '12', r: '2')
|
31
|
+
s.circle(cx: '12', cy: '12', r: '8')
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class ListChevronsDownUp < 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: 'm15 18 3-3 3 3')
|
18
|
+
s.path(d: 'm15 6 3 3 3-3')
|
19
|
+
s.path(d: 'M3 12h8')
|
20
|
+
s.path(d: 'M3 18h8')
|
21
|
+
s.path(d: 'M3 6h8')
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Metrics/MethodLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class PanelLeftRightDashed < 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: 'M16 10V9')
|
19
|
+
s.path(d: 'M16 15v-1')
|
20
|
+
s.path(d: 'M16 21v-2')
|
21
|
+
s.path(d: 'M16 5V3')
|
22
|
+
s.path(d: 'M8 10V9')
|
23
|
+
s.path(d: 'M8 15v-1')
|
24
|
+
s.path(d: 'M8 21v-2')
|
25
|
+
s.path(d: 'M8 5V3')
|
26
|
+
s.rect(x: '3', y: '3', width: '18', height: '18', rx: '2')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
# rubocop:enable Metrics/MethodLength
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Metrics/MethodLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class PanelTopBottomDashed < 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 16h1')
|
19
|
+
s.path(d: 'M14 8h1')
|
20
|
+
s.path(d: 'M19 16h2')
|
21
|
+
s.path(d: 'M19 8h2')
|
22
|
+
s.path(d: 'M3 16h2')
|
23
|
+
s.path(d: 'M3 8h2')
|
24
|
+
s.path(d: 'M9 16h1')
|
25
|
+
s.path(d: 'M9 8h1')
|
26
|
+
s.rect(x: '3', y: '3', width: '18', height: '18', rx: '2')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
# rubocop:enable Metrics/MethodLength
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class Rose < 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: 'M17 10h-1a4 4 0 1 1 4-4v.534')
|
18
|
+
s.path(
|
19
|
+
d: 'M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31'
|
20
|
+
)
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2'
|
24
|
+
)
|
25
|
+
s.path(d: 'M9.77 12C4 15 2 22 2 22')
|
26
|
+
s.circle(cx: '17', cy: '8', r: '2')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -14,9 +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: 'M12
|
19
|
-
s.path(
|
17
|
+
s.path(d: 'M12 13v7a2 2 0 0 0 4 0')
|
18
|
+
s.path(d: 'M12 2v2')
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z'
|
22
|
+
)
|
20
23
|
end
|
21
24
|
end
|
22
25
|
end
|
@@ -14,10 +14,13 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: 'M12
|
18
|
-
s.path(d: '
|
19
|
-
s.path(
|
17
|
+
s.path(d: 'M12 13v7a2 2 0 0 0 4 0')
|
18
|
+
s.path(d: 'M12 2v2')
|
19
|
+
s.path(
|
20
|
+
d: 'M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51'
|
21
|
+
)
|
20
22
|
s.path(d: 'm2 2 20 20')
|
23
|
+
s.path(d: 'M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10')
|
21
24
|
end
|
22
25
|
end
|
23
26
|
end
|
@@ -14,13 +14,11 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.circle(cx: '8', cy: '9', r: '2')
|
18
|
-
s.path(
|
19
|
-
d:
|
20
|
-
'm9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2'
|
21
|
-
)
|
22
|
-
s.path(d: 'M8 21h8')
|
23
17
|
s.path(d: 'M12 17v4')
|
18
|
+
s.path(d: 'M8 21h8')
|
19
|
+
s.path(d: 'm9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15')
|
20
|
+
s.circle(cx: '8', cy: '9', r: '2')
|
21
|
+
s.rect(x: '2', y: '3', width: '20', height: '14', rx: '2')
|
24
22
|
end
|
25
23
|
end
|
26
24
|
end
|
data/lib/phlex-icons/lucide.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module PhlexIcons
|
4
4
|
module Lucide # rubocop:disable Metrics/ModuleLength
|
5
|
-
VERSION = '0.
|
5
|
+
VERSION = '0.542.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -347,7 +347,7 @@ module PhlexIcons
|
|
347
347
|
autoload :ChevronsRightLeft, 'phlex-icons/lucide/chevrons_right_left'
|
348
348
|
autoload :ChevronsUp, 'phlex-icons/lucide/chevrons_up'
|
349
349
|
autoload :ChevronsUpDown, 'phlex-icons/lucide/chevrons_up_down'
|
350
|
-
autoload :
|
350
|
+
autoload :Chromium, 'phlex-icons/lucide/chromium'
|
351
351
|
autoload :Church, 'phlex-icons/lucide/church'
|
352
352
|
autoload :Cigarette, 'phlex-icons/lucide/cigarette'
|
353
353
|
autoload :CigaretteOff, 'phlex-icons/lucide/cigarette_off'
|
@@ -885,6 +885,7 @@ module PhlexIcons
|
|
885
885
|
autoload :List, 'phlex-icons/lucide/list'
|
886
886
|
autoload :ListCheck, 'phlex-icons/lucide/list_check'
|
887
887
|
autoload :ListChecks, 'phlex-icons/lucide/list_checks'
|
888
|
+
autoload :ListChevronsDownUp, 'phlex-icons/lucide/list_chevrons_down_up'
|
888
889
|
autoload :ListCollapse, 'phlex-icons/lucide/list_collapse'
|
889
890
|
autoload :ListEnd, 'phlex-icons/lucide/list_end'
|
890
891
|
autoload :ListFilter, 'phlex-icons/lucide/list_filter'
|
@@ -1082,11 +1083,13 @@ module PhlexIcons
|
|
1082
1083
|
autoload :PanelLeftClose, 'phlex-icons/lucide/panel_left_close'
|
1083
1084
|
autoload :PanelLeftDashed, 'phlex-icons/lucide/panel_left_dashed'
|
1084
1085
|
autoload :PanelLeftOpen, 'phlex-icons/lucide/panel_left_open'
|
1086
|
+
autoload :PanelLeftRightDashed, 'phlex-icons/lucide/panel_left_right_dashed'
|
1085
1087
|
autoload :PanelRight, 'phlex-icons/lucide/panel_right'
|
1086
1088
|
autoload :PanelRightClose, 'phlex-icons/lucide/panel_right_close'
|
1087
1089
|
autoload :PanelRightDashed, 'phlex-icons/lucide/panel_right_dashed'
|
1088
1090
|
autoload :PanelRightOpen, 'phlex-icons/lucide/panel_right_open'
|
1089
1091
|
autoload :PanelTop, 'phlex-icons/lucide/panel_top'
|
1092
|
+
autoload :PanelTopBottomDashed, 'phlex-icons/lucide/panel_top_bottom_dashed'
|
1090
1093
|
autoload :PanelTopClose, 'phlex-icons/lucide/panel_top_close'
|
1091
1094
|
autoload :PanelTopDashed, 'phlex-icons/lucide/panel_top_dashed'
|
1092
1095
|
autoload :PanelTopOpen, 'phlex-icons/lucide/panel_top_open'
|
@@ -1211,6 +1214,7 @@ module PhlexIcons
|
|
1211
1214
|
autoload :Rocket, 'phlex-icons/lucide/rocket'
|
1212
1215
|
autoload :RockingChair, 'phlex-icons/lucide/rocking_chair'
|
1213
1216
|
autoload :RollerCoaster, 'phlex-icons/lucide/roller_coaster'
|
1217
|
+
autoload :Rose, 'phlex-icons/lucide/rose'
|
1214
1218
|
autoload :Rotate3d, 'phlex-icons/lucide/rotate_3d'
|
1215
1219
|
autoload :RotateCcw, 'phlex-icons/lucide/rotate_ccw'
|
1216
1220
|
autoload :RotateCcwKey, 'phlex-icons/lucide/rotate_ccw_key'
|
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.36.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-08-
|
11
|
+
date: 2025-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -4264,7 +4264,7 @@ files:
|
|
4264
4264
|
- lib/phlex-icons/lucide/chevrons_right_left.rb
|
4265
4265
|
- lib/phlex-icons/lucide/chevrons_up.rb
|
4266
4266
|
- lib/phlex-icons/lucide/chevrons_up_down.rb
|
4267
|
-
- lib/phlex-icons/lucide/
|
4267
|
+
- lib/phlex-icons/lucide/chromium.rb
|
4268
4268
|
- lib/phlex-icons/lucide/church.rb
|
4269
4269
|
- lib/phlex-icons/lucide/cigarette.rb
|
4270
4270
|
- lib/phlex-icons/lucide/cigarette_off.rb
|
@@ -4802,6 +4802,7 @@ files:
|
|
4802
4802
|
- lib/phlex-icons/lucide/list.rb
|
4803
4803
|
- lib/phlex-icons/lucide/list_check.rb
|
4804
4804
|
- lib/phlex-icons/lucide/list_checks.rb
|
4805
|
+
- lib/phlex-icons/lucide/list_chevrons_down_up.rb
|
4805
4806
|
- lib/phlex-icons/lucide/list_collapse.rb
|
4806
4807
|
- lib/phlex-icons/lucide/list_end.rb
|
4807
4808
|
- lib/phlex-icons/lucide/list_filter.rb
|
@@ -4999,11 +5000,13 @@ files:
|
|
4999
5000
|
- lib/phlex-icons/lucide/panel_left_close.rb
|
5000
5001
|
- lib/phlex-icons/lucide/panel_left_dashed.rb
|
5001
5002
|
- lib/phlex-icons/lucide/panel_left_open.rb
|
5003
|
+
- lib/phlex-icons/lucide/panel_left_right_dashed.rb
|
5002
5004
|
- lib/phlex-icons/lucide/panel_right.rb
|
5003
5005
|
- lib/phlex-icons/lucide/panel_right_close.rb
|
5004
5006
|
- lib/phlex-icons/lucide/panel_right_dashed.rb
|
5005
5007
|
- lib/phlex-icons/lucide/panel_right_open.rb
|
5006
5008
|
- lib/phlex-icons/lucide/panel_top.rb
|
5009
|
+
- lib/phlex-icons/lucide/panel_top_bottom_dashed.rb
|
5007
5010
|
- lib/phlex-icons/lucide/panel_top_close.rb
|
5008
5011
|
- lib/phlex-icons/lucide/panel_top_dashed.rb
|
5009
5012
|
- lib/phlex-icons/lucide/panel_top_open.rb
|
@@ -5128,6 +5131,7 @@ files:
|
|
5128
5131
|
- lib/phlex-icons/lucide/rocket.rb
|
5129
5132
|
- lib/phlex-icons/lucide/rocking_chair.rb
|
5130
5133
|
- lib/phlex-icons/lucide/roller_coaster.rb
|
5134
|
+
- lib/phlex-icons/lucide/rose.rb
|
5131
5135
|
- lib/phlex-icons/lucide/rotate_3d.rb
|
5132
5136
|
- lib/phlex-icons/lucide/rotate_ccw.rb
|
5133
5137
|
- lib/phlex-icons/lucide/rotate_ccw_key.rb
|