phlex-icons-lucide 1.5.0 → 1.7.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/bath.rb +5 -5
- data/lib/phlex/icons/lucide/calendar_sync.rb +31 -0
- data/lib/phlex/icons/lucide/cloud_alert.rb +26 -0
- data/lib/phlex/icons/lucide/cross.rb +1 -1
- data/lib/phlex/icons/lucide/drill.rb +6 -6
- data/lib/phlex/icons/lucide/equal_approximately.rb +25 -0
- data/lib/phlex/icons/lucide/grid_2x2.rb +2 -2
- data/lib/phlex/icons/lucide/hard_hat.rb +2 -5
- data/lib/phlex/icons/lucide/heading_4.rb +3 -3
- data/lib/phlex/icons/lucide/image_upscale.rb +31 -0
- data/lib/phlex/icons/lucide/laptop_minimal_check.rb +26 -0
- data/lib/phlex/icons/lucide/puzzle.rb +1 -1
- data/lib/phlex/icons/lucide/scale_3d.rb +2 -2
- data/lib/phlex/icons/lucide/school.rb +5 -2
- data/lib/phlex/icons/lucide/ship.rb +8 -7
- data/lib/phlex/icons/lucide/shuffle.rb +4 -4
- data/lib/phlex/icons/lucide/toilet.rb +30 -0
- data/lib/phlex/icons/lucide/vegan.rb +2 -2
- data/lib/phlex/icons/lucide/venetian_mask.rb +5 -3
- data/lib/phlex/icons/lucide.rb +7 -1
- data/lib/phlex/icons/version.rb +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 255f9df53120c1945a04a80d539f681efd6869e5454c6f130c2e514a387893ef
|
4
|
+
data.tar.gz: f4fdc121277aca8f755593e93024d40f1f87da57843b514832cf7dd4ef778f2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f5a2ff88e02db748063077c7328a2f97810360badf7723cf3d6ab0d3331660c4fcb08f547969934c513b6a77966d2be08b939585c685154d15c10d6279a868c
|
7
|
+
data.tar.gz: d8a52fcee3c8df79e808213c46f14cfd22211346740e85c7da325abf4606e73309d40f234cbb8882d849f88bc7c586415aed6e618efffb7b32505d0f26279571
|
@@ -15,14 +15,14 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
+
s.path(d: 'M10 4 8 6')
|
19
|
+
s.path(d: 'M17 19v2')
|
20
|
+
s.path(d: 'M2 12h20')
|
21
|
+
s.path(d: 'M7 19v2')
|
18
22
|
s.path(
|
19
23
|
d:
|
20
|
-
'M9
|
24
|
+
'M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5'
|
21
25
|
)
|
22
|
-
s.line(x1: '10', x2: '8', y1: '5', y2: '7')
|
23
|
-
s.line(x1: '2', x2: '22', y1: '12', y2: '12')
|
24
|
-
s.line(x1: '7', x2: '7', y1: '19', y2: '21')
|
25
|
-
s.line(x1: '17', x2: '17', y1: '19', y2: '21')
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class CalendarSync < 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: 'M11 10v4h4')
|
19
|
+
s.path(d: 'm11 14 1.535-1.605a5 5 0 0 1 8 1.5')
|
20
|
+
s.path(d: 'M16 2v4')
|
21
|
+
s.path(d: 'm21 18-1.535 1.605a5 5 0 0 1-8-1.5')
|
22
|
+
s.path(d: 'M21 22v-4h-4')
|
23
|
+
s.path(d: 'M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3')
|
24
|
+
s.path(d: 'M3 10h4')
|
25
|
+
s.path(d: 'M8 2v4')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class CloudAlert < 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: 'M12 12v4')
|
19
|
+
s.path(d: 'M12 20h.01')
|
20
|
+
s.path(d: 'M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708')
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -18,7 +18,7 @@ module Phlex
|
|
18
18
|
) do |s|
|
19
19
|
s.path(
|
20
20
|
d:
|
21
|
-
'
|
21
|
+
'M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z'
|
22
22
|
)
|
23
23
|
end
|
24
24
|
end
|
@@ -16,16 +16,16 @@ module Phlex
|
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
18
|
s.path(
|
19
|
-
d: '
|
19
|
+
d: 'M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z'
|
20
|
+
)
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8'
|
20
24
|
)
|
21
|
-
s.path(d: 'M18 6h4')
|
22
25
|
s.path(d: 'M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3')
|
26
|
+
s.path(d: 'M18 6h4')
|
23
27
|
s.path(d: 'm5 10-2 8')
|
24
|
-
s.path(d: 'M12 10v3c0 .6-.4 1-1 1H8')
|
25
28
|
s.path(d: 'm7 18 2-8')
|
26
|
-
s.path(
|
27
|
-
d: 'M5 22c-1.7 0-3-1.3-3-3 0-.6.4-1 1-1h7c.6 0 1 .4 1 1v2c0 .6-.4 1-1 1Z'
|
28
|
-
)
|
29
29
|
end
|
30
30
|
end
|
31
31
|
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class EqualApproximately < 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: 'M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0')
|
19
|
+
s.path(d: 'M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0')
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.rect(width: '18', height: '18', x: '3', y: '3', rx: '2')
|
19
|
-
s.path(d: 'M3 12h18')
|
20
18
|
s.path(d: 'M12 3v18')
|
19
|
+
s.path(d: 'M3 12h18')
|
20
|
+
s.rect(x: '3', y: '3', width: '18', height: '18', rx: '2')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -15,13 +15,10 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.path(
|
19
|
-
d:
|
20
|
-
'M2 18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v2z'
|
21
|
-
)
|
22
18
|
s.path(d: 'M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5')
|
23
|
-
s.path(d: 'M4 15v-3a6 6 0 0 1 6-6')
|
24
19
|
s.path(d: 'M14 6a6 6 0 0 1 6 6v3')
|
20
|
+
s.path(d: 'M4 15v-3a6 6 0 0 1 6-6')
|
21
|
+
s.rect(x: '2', y: '15', width: '20', height: '4', rx: '1')
|
25
22
|
end
|
26
23
|
end
|
27
24
|
end
|
@@ -15,11 +15,11 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.path(d: 'M4 12h8')
|
19
|
-
s.path(d: 'M4 18V6')
|
20
18
|
s.path(d: 'M12 18V6')
|
21
|
-
s.path(d: 'M17
|
19
|
+
s.path(d: 'M17 10v3a1 1 0 0 0 1 1h3')
|
22
20
|
s.path(d: 'M21 10v8')
|
21
|
+
s.path(d: 'M4 12h8')
|
22
|
+
s.path(d: 'M4 18V6')
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class ImageUpscale < 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 3h5v5')
|
19
|
+
s.path(d: 'M17 21h2a2 2 0 0 0 2-2')
|
20
|
+
s.path(d: 'M21 12v3')
|
21
|
+
s.path(d: 'm21 3-5 5')
|
22
|
+
s.path(d: 'M3 7V5a2 2 0 0 1 2-2')
|
23
|
+
s.path(d: 'm5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19')
|
24
|
+
s.path(d: 'M9 3h3')
|
25
|
+
s.rect(x: '3', y: '11', width: '10', height: '10', rx: '1')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Lucide
|
6
|
+
class LaptopMinimalCheck < 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: 'M2 20h20')
|
19
|
+
s.path(d: 'm9 10 2 2 4-4')
|
20
|
+
s.rect(x: '3', y: '4', width: '18', height: '12', rx: '2')
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -18,7 +18,7 @@ module Phlex
|
|
18
18
|
) do |s|
|
19
19
|
s.path(
|
20
20
|
d:
|
21
|
-
'
|
21
|
+
'M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z'
|
22
22
|
)
|
23
23
|
end
|
24
24
|
end
|
@@ -15,10 +15,10 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
+
s.path(d: 'M5 7v11a1 1 0 0 0 1 1h11')
|
19
|
+
s.path(d: 'M5.293 18.707 11 13')
|
18
20
|
s.circle(cx: '19', cy: '19', r: '2')
|
19
21
|
s.circle(cx: '5', cy: '5', r: '2')
|
20
|
-
s.path(d: 'M5 7v12h12')
|
21
|
-
s.path(d: 'm5 19 6-6')
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -16,9 +16,12 @@ module Phlex
|
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
18
|
s.path(d: 'M14 22v-4a2 2 0 1 0-4 0v4')
|
19
|
-
s.path(
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'm18 10 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7.382a1 1 0 0 1 .553-.894L6 10'
|
22
|
+
)
|
20
23
|
s.path(d: 'M18 5v17')
|
21
|
-
s.path(d: 'm4 6
|
24
|
+
s.path(d: 'm4 6 7.106-3.553a2 2 0 0 1 1.788 0L20 6')
|
22
25
|
s.path(d: 'M6 5v17')
|
23
26
|
s.circle(cx: '12', cy: '9', r: '2')
|
24
27
|
end
|
@@ -1,6 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# rubocop:disable Layout/LineLength
|
4
3
|
module Phlex
|
5
4
|
module Icons
|
6
5
|
module Lucide
|
@@ -16,18 +15,20 @@ module Phlex
|
|
16
15
|
stroke_linecap: 'round',
|
17
16
|
stroke_linejoin: 'round'
|
18
17
|
) do |s|
|
18
|
+
s.path(d: 'M12 10.189V14')
|
19
|
+
s.path(d: 'M12 2v3')
|
20
|
+
s.path(d: 'M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6')
|
19
21
|
s.path(
|
20
22
|
d:
|
21
|
-
'
|
23
|
+
'M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76'
|
24
|
+
)
|
25
|
+
s.path(
|
26
|
+
d:
|
27
|
+
'M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'
|
22
28
|
)
|
23
|
-
s.path(d: 'M19.38 20A11.6 11.6 0 0 0 21 14l-9-4-9 4c0 2.9.94 5.34 2.81 7.76')
|
24
|
-
s.path(d: 'M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6')
|
25
|
-
s.path(d: 'M12 10v4')
|
26
|
-
s.path(d: 'M12 2v3')
|
27
29
|
end
|
28
30
|
end
|
29
31
|
end
|
30
32
|
end
|
31
33
|
end
|
32
34
|
end
|
33
|
-
# rubocop:enable Layout/LineLength
|
@@ -15,11 +15,11 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.path(d: 'M2 18h1.4c1.3 0 2.5-.6 3.3-1.7l6.1-8.6c.7-1.1 2-1.7 3.3-1.7H22')
|
19
|
-
s.path(d: 'm18 2 4 4-4 4')
|
20
|
-
s.path(d: 'M2 6h1.9c1.5 0 2.9.9 3.6 2.2')
|
21
|
-
s.path(d: 'M22 18h-5.9c-1.3 0-2.6-.7-3.3-1.8l-.5-.8')
|
22
18
|
s.path(d: 'm18 14 4 4-4 4')
|
19
|
+
s.path(d: 'm18 2 4 4-4 4')
|
20
|
+
s.path(d: 'M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22')
|
21
|
+
s.path(d: 'M2 6h1.972a4 4 0 0 1 3.6 2.2')
|
22
|
+
s.path(d: 'M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45')
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module Phlex
|
5
|
+
module Icons
|
6
|
+
module Lucide
|
7
|
+
class Toilet < Base
|
8
|
+
def view_template
|
9
|
+
svg(
|
10
|
+
**attrs,
|
11
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
12
|
+
viewbox: '0 0 24 24',
|
13
|
+
fill: 'none',
|
14
|
+
stroke: 'currentColor',
|
15
|
+
stroke_width: '2',
|
16
|
+
stroke_linecap: 'round',
|
17
|
+
stroke_linejoin: 'round'
|
18
|
+
) do |s|
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18'
|
22
|
+
)
|
23
|
+
s.path(d: 'M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8')
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
# rubocop:enable Layout/LineLength
|
@@ -15,9 +15,9 @@ module Phlex
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
+
s.path(d: 'M16 8q6 0 6-6-6 0-6 6')
|
19
|
+
s.path(d: 'M17.41 3.59a10 10 0 1 0 3 3')
|
18
20
|
s.path(d: 'M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14')
|
19
|
-
s.path(d: 'M16 8c4 0 6-2 6-6-4 0-6 2-6 6')
|
20
|
-
s.path(d: 'M17.41 3.6a10 10 0 1 0 3 3')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
3
4
|
module Phlex
|
4
5
|
module Icons
|
5
6
|
module Lucide
|
@@ -15,15 +16,16 @@ module Phlex
|
|
15
16
|
stroke_linecap: 'round',
|
16
17
|
stroke_linejoin: 'round'
|
17
18
|
) do |s|
|
19
|
+
s.path(d: 'M18 11c-1.5 0-2.5.5-3 2')
|
18
20
|
s.path(
|
19
21
|
d:
|
20
|
-
'
|
22
|
+
'M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z'
|
21
23
|
)
|
22
|
-
s.path(d: 'M6 11c1.5 0
|
23
|
-
s.path(d: 'M18 11c-1.5 0-3 .5-3 2 2 0 3 0 3-2Z')
|
24
|
+
s.path(d: 'M6 11c1.5 0 2.5.5 3 2')
|
24
25
|
end
|
25
26
|
end
|
26
27
|
end
|
27
28
|
end
|
28
29
|
end
|
29
30
|
end
|
31
|
+
# rubocop:enable Layout/LineLength
|
data/lib/phlex/icons/lucide.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
module Phlex
|
4
4
|
module Icons
|
5
5
|
module Lucide # rubocop:disable Metrics/ModuleLength
|
6
|
-
VERSION = '0.
|
6
|
+
VERSION = '0.462.0'
|
7
7
|
VARIANTS = nil
|
8
8
|
|
9
9
|
extend Phlex::Kit
|
@@ -267,6 +267,7 @@ module Phlex
|
|
267
267
|
autoload :CalendarPlus2, 'phlex/icons/lucide/calendar_plus_2'
|
268
268
|
autoload :CalendarRange, 'phlex/icons/lucide/calendar_range'
|
269
269
|
autoload :CalendarSearch, 'phlex/icons/lucide/calendar_search'
|
270
|
+
autoload :CalendarSync, 'phlex/icons/lucide/calendar_sync'
|
270
271
|
autoload :CalendarX, 'phlex/icons/lucide/calendar_x'
|
271
272
|
autoload :CalendarX2, 'phlex/icons/lucide/calendar_x_2'
|
272
273
|
autoload :Camera, 'phlex/icons/lucide/camera'
|
@@ -409,6 +410,7 @@ module Phlex
|
|
409
410
|
autoload :ClockArrowDown, 'phlex/icons/lucide/clock_arrow_down'
|
410
411
|
autoload :ClockArrowUp, 'phlex/icons/lucide/clock_arrow_up'
|
411
412
|
autoload :Cloud, 'phlex/icons/lucide/cloud'
|
413
|
+
autoload :CloudAlert, 'phlex/icons/lucide/cloud_alert'
|
412
414
|
autoload :CloudCog, 'phlex/icons/lucide/cloud_cog'
|
413
415
|
autoload :CloudDownload, 'phlex/icons/lucide/cloud_download'
|
414
416
|
autoload :CloudDrizzle, 'phlex/icons/lucide/cloud_drizzle'
|
@@ -533,6 +535,7 @@ module Phlex
|
|
533
535
|
autoload :Ellipsis, 'phlex/icons/lucide/ellipsis'
|
534
536
|
autoload :EllipsisVertical, 'phlex/icons/lucide/ellipsis_vertical'
|
535
537
|
autoload :Equal, 'phlex/icons/lucide/equal'
|
538
|
+
autoload :EqualApproximately, 'phlex/icons/lucide/equal_approximately'
|
536
539
|
autoload :EqualNot, 'phlex/icons/lucide/equal_not'
|
537
540
|
autoload :Eraser, 'phlex/icons/lucide/eraser'
|
538
541
|
autoload :EthernetPort, 'phlex/icons/lucide/ethernet_port'
|
@@ -777,6 +780,7 @@ module Phlex
|
|
777
780
|
autoload :ImagePlay, 'phlex/icons/lucide/image_play'
|
778
781
|
autoload :ImagePlus, 'phlex/icons/lucide/image_plus'
|
779
782
|
autoload :ImageUp, 'phlex/icons/lucide/image_up'
|
783
|
+
autoload :ImageUpscale, 'phlex/icons/lucide/image_upscale'
|
780
784
|
autoload :Images, 'phlex/icons/lucide/images'
|
781
785
|
autoload :Import, 'phlex/icons/lucide/import'
|
782
786
|
autoload :Inbox, 'phlex/icons/lucide/inbox'
|
@@ -810,6 +814,7 @@ module Phlex
|
|
810
814
|
autoload :Languages, 'phlex/icons/lucide/languages'
|
811
815
|
autoload :Laptop, 'phlex/icons/lucide/laptop'
|
812
816
|
autoload :LaptopMinimal, 'phlex/icons/lucide/laptop_minimal'
|
817
|
+
autoload :LaptopMinimalCheck, 'phlex/icons/lucide/laptop_minimal_check'
|
813
818
|
autoload :Lasso, 'phlex/icons/lucide/lasso'
|
814
819
|
autoload :LassoSelect, 'phlex/icons/lucide/lasso_select'
|
815
820
|
autoload :Laugh, 'phlex/icons/lucide/laugh'
|
@@ -1420,6 +1425,7 @@ module Phlex
|
|
1420
1425
|
autoload :TimerReset, 'phlex/icons/lucide/timer_reset'
|
1421
1426
|
autoload :ToggleLeft, 'phlex/icons/lucide/toggle_left'
|
1422
1427
|
autoload :ToggleRight, 'phlex/icons/lucide/toggle_right'
|
1428
|
+
autoload :Toilet, 'phlex/icons/lucide/toilet'
|
1423
1429
|
autoload :Tornado, 'phlex/icons/lucide/tornado'
|
1424
1430
|
autoload :Torus, 'phlex/icons/lucide/torus'
|
1425
1431
|
autoload :Touchpad, 'phlex/icons/lucide/touchpad'
|
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: 1.
|
4
|
+
version: 1.7.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: 2024-11-
|
11
|
+
date: 2024-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -310,6 +310,7 @@ files:
|
|
310
310
|
- lib/phlex/icons/lucide/calendar_plus_2.rb
|
311
311
|
- lib/phlex/icons/lucide/calendar_range.rb
|
312
312
|
- lib/phlex/icons/lucide/calendar_search.rb
|
313
|
+
- lib/phlex/icons/lucide/calendar_sync.rb
|
313
314
|
- lib/phlex/icons/lucide/calendar_x.rb
|
314
315
|
- lib/phlex/icons/lucide/calendar_x_2.rb
|
315
316
|
- lib/phlex/icons/lucide/camera.rb
|
@@ -452,6 +453,7 @@ files:
|
|
452
453
|
- lib/phlex/icons/lucide/clock_arrow_down.rb
|
453
454
|
- lib/phlex/icons/lucide/clock_arrow_up.rb
|
454
455
|
- lib/phlex/icons/lucide/cloud.rb
|
456
|
+
- lib/phlex/icons/lucide/cloud_alert.rb
|
455
457
|
- lib/phlex/icons/lucide/cloud_cog.rb
|
456
458
|
- lib/phlex/icons/lucide/cloud_download.rb
|
457
459
|
- lib/phlex/icons/lucide/cloud_drizzle.rb
|
@@ -576,6 +578,7 @@ files:
|
|
576
578
|
- lib/phlex/icons/lucide/ellipsis.rb
|
577
579
|
- lib/phlex/icons/lucide/ellipsis_vertical.rb
|
578
580
|
- lib/phlex/icons/lucide/equal.rb
|
581
|
+
- lib/phlex/icons/lucide/equal_approximately.rb
|
579
582
|
- lib/phlex/icons/lucide/equal_not.rb
|
580
583
|
- lib/phlex/icons/lucide/eraser.rb
|
581
584
|
- lib/phlex/icons/lucide/ethernet_port.rb
|
@@ -820,6 +823,7 @@ files:
|
|
820
823
|
- lib/phlex/icons/lucide/image_play.rb
|
821
824
|
- lib/phlex/icons/lucide/image_plus.rb
|
822
825
|
- lib/phlex/icons/lucide/image_up.rb
|
826
|
+
- lib/phlex/icons/lucide/image_upscale.rb
|
823
827
|
- lib/phlex/icons/lucide/images.rb
|
824
828
|
- lib/phlex/icons/lucide/import.rb
|
825
829
|
- lib/phlex/icons/lucide/inbox.rb
|
@@ -853,6 +857,7 @@ files:
|
|
853
857
|
- lib/phlex/icons/lucide/languages.rb
|
854
858
|
- lib/phlex/icons/lucide/laptop.rb
|
855
859
|
- lib/phlex/icons/lucide/laptop_minimal.rb
|
860
|
+
- lib/phlex/icons/lucide/laptop_minimal_check.rb
|
856
861
|
- lib/phlex/icons/lucide/lasso.rb
|
857
862
|
- lib/phlex/icons/lucide/lasso_select.rb
|
858
863
|
- lib/phlex/icons/lucide/laugh.rb
|
@@ -1463,6 +1468,7 @@ files:
|
|
1463
1468
|
- lib/phlex/icons/lucide/timer_reset.rb
|
1464
1469
|
- lib/phlex/icons/lucide/toggle_left.rb
|
1465
1470
|
- lib/phlex/icons/lucide/toggle_right.rb
|
1471
|
+
- lib/phlex/icons/lucide/toilet.rb
|
1466
1472
|
- lib/phlex/icons/lucide/tornado.rb
|
1467
1473
|
- lib/phlex/icons/lucide/torus.rb
|
1468
1474
|
- lib/phlex/icons/lucide/touchpad.rb
|