phlex-icons-lucide 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/phlex/icons/lucide/calendar_sync.rb +31 -0
- data/lib/phlex/icons/lucide/grid_2x2.rb +2 -2
- data/lib/phlex/icons/lucide/image_upscale.rb +31 -0
- data/lib/phlex/icons/lucide/scale_3d.rb +2 -2
- data/lib/phlex/icons/lucide/ship.rb +8 -7
- data/lib/phlex/icons/lucide/shuffle.rb +4 -4
- data/lib/phlex/icons/lucide/venetian_mask.rb +5 -3
- data/lib/phlex/icons/lucide.rb +3 -1
- data/lib/phlex/icons/version.rb +1 -1
- metadata +4 -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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'
|
@@ -779,6 +780,7 @@ module Phlex
|
|
779
780
|
autoload :ImagePlay, 'phlex/icons/lucide/image_play'
|
780
781
|
autoload :ImagePlus, 'phlex/icons/lucide/image_plus'
|
781
782
|
autoload :ImageUp, 'phlex/icons/lucide/image_up'
|
783
|
+
autoload :ImageUpscale, 'phlex/icons/lucide/image_upscale'
|
782
784
|
autoload :Images, 'phlex/icons/lucide/images'
|
783
785
|
autoload :Import, 'phlex/icons/lucide/import'
|
784
786
|
autoload :Inbox, 'phlex/icons/lucide/inbox'
|
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
|
@@ -822,6 +823,7 @@ files:
|
|
822
823
|
- lib/phlex/icons/lucide/image_play.rb
|
823
824
|
- lib/phlex/icons/lucide/image_plus.rb
|
824
825
|
- lib/phlex/icons/lucide/image_up.rb
|
826
|
+
- lib/phlex/icons/lucide/image_upscale.rb
|
825
827
|
- lib/phlex/icons/lucide/images.rb
|
826
828
|
- lib/phlex/icons/lucide/import.rb
|
827
829
|
- lib/phlex/icons/lucide/inbox.rb
|