phlex-icons-lucide 2.44.0 → 2.46.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/ampersand.rb +2 -2
- data/lib/phlex-icons/lucide/anchor.rb +4 -3
- data/lib/phlex-icons/lucide/calendars.rb +27 -0
- data/lib/phlex-icons/lucide/chess_bishop.rb +32 -0
- data/lib/phlex-icons/lucide/chess_king.rb +32 -0
- data/lib/phlex-icons/lucide/chess_knight.rb +33 -0
- data/lib/phlex-icons/lucide/chess_pawn.rb +28 -0
- data/lib/phlex-icons/lucide/chess_queen.rb +31 -0
- data/lib/phlex-icons/lucide/chess_rook.rb +30 -0
- data/lib/phlex-icons/lucide/{fingerprint.rb → fingerprint_pattern.rb} +1 -1
- data/lib/phlex-icons/lucide/folder_git_2.rb +1 -1
- data/lib/phlex-icons/lucide.rb +9 -2
- data/lib/phlex-icons/version.rb +1 -1
- metadata +9 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1e96576f3ad3aadcae493779375afff6b9bad90f38f97008ebfc40d7e15160a
|
|
4
|
+
data.tar.gz: c805c76522960806f14a06ab0f3d93f868e2cd6a2e913fbdd82b16c0544fa348
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d72f6ace81048b13de6224c6d925142134c857a127ce7733ce128923c289821de393fe453ea90bf6860774a3f31bb6b2c196fbcc7ed75fa40fb4da89af67b1a
|
|
7
|
+
data.tar.gz: 460216be9a309d7fd77cc31798c4da486318e648f6fbcceb5cb8fdd3e2ab2e4dfc24fef2a0094ecff7f962714c8a2411742e85e97ff24bd78895373de8963ef4
|
|
@@ -14,11 +14,11 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
+
s.path(d: 'M16 12h3')
|
|
17
18
|
s.path(
|
|
18
19
|
d:
|
|
19
|
-
'M17.5
|
|
20
|
+
'M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13'
|
|
20
21
|
)
|
|
21
|
-
s.path(d: 'M16 12h3')
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
end
|
|
@@ -14,9 +14,10 @@ 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.
|
|
17
|
+
s.path(d: 'M12 6v16')
|
|
18
|
+
s.path(d: 'm19 13 2-1a9 9 0 0 1-18 0l2 1')
|
|
19
|
+
s.path(d: 'M9 11h6')
|
|
20
|
+
s.circle(cx: '12', cy: '4', r: '2')
|
|
20
21
|
end
|
|
21
22
|
end
|
|
22
23
|
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class Calendars < 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 2v2')
|
|
18
|
+
s.path(d: 'M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2')
|
|
19
|
+
s.path(d: 'M18 2v2')
|
|
20
|
+
s.path(d: 'M2 13h2')
|
|
21
|
+
s.path(d: 'M8 8h14')
|
|
22
|
+
s.rect(x: '8', y: '3', width: '14', height: '14', rx: '2')
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class ChessBishop < 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(
|
|
19
|
+
d: 'M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z'
|
|
20
|
+
)
|
|
21
|
+
s.path(
|
|
22
|
+
d:
|
|
23
|
+
'M15 18c1.5-.615 3-2.461 3-4.923C18 8.769 14.5 4.462 12 2 9.5 4.462 6 8.77 6 13.077 6 15.539 7.5 17.385 9 18'
|
|
24
|
+
)
|
|
25
|
+
s.path(d: 'm16 7-2.5 2.5')
|
|
26
|
+
s.path(d: 'M9 2h6')
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class ChessKing < 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(
|
|
19
|
+
d: 'M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z'
|
|
20
|
+
)
|
|
21
|
+
s.path(
|
|
22
|
+
d:
|
|
23
|
+
'm6.7 18-1-1C4.35 15.682 3 14.09 3 12a5 5 0 0 1 4.95-5c1.584 0 2.7.455 4.05 1.818C13.35 7.455 14.466 7 16.05 7A5 5 0 0 1 21 12c0 2.082-1.359 3.673-2.7 5l-1 1'
|
|
24
|
+
)
|
|
25
|
+
s.path(d: 'M10 4h4')
|
|
26
|
+
s.path(d: 'M12 2v6.818')
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class ChessKnight < 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(
|
|
19
|
+
d: 'M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z'
|
|
20
|
+
)
|
|
21
|
+
s.path(
|
|
22
|
+
d:
|
|
23
|
+
'M16.5 18c1-2 2.5-5 2.5-9a7 7 0 0 0-7-7H6.635a1 1 0 0 0-.768 1.64L7 5l-2.32 5.802a2 2 0 0 0 .95 2.526l2.87 1.456'
|
|
24
|
+
)
|
|
25
|
+
s.path(d: 'm15 5 1.425-1.425')
|
|
26
|
+
s.path(d: 'm17 8 1.53-1.53')
|
|
27
|
+
s.path(d: 'M9.713 12.185 7 18')
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class ChessPawn < 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(
|
|
18
|
+
d: 'M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z'
|
|
19
|
+
)
|
|
20
|
+
s.path(d: 'm14.5 10 1.5 8')
|
|
21
|
+
s.path(d: 'M7 10h10')
|
|
22
|
+
s.path(d: 'm8 18 1.5-8')
|
|
23
|
+
s.circle(cx: '12', cy: '6', r: '4')
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class ChessQueen < 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(
|
|
18
|
+
d: 'M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z'
|
|
19
|
+
)
|
|
20
|
+
s.path(d: 'm12.474 5.943 1.567 5.34a1 1 0 0 0 1.75.328l2.616-3.402')
|
|
21
|
+
s.path(d: 'm20 9-3 9')
|
|
22
|
+
s.path(d: 'm5.594 8.209 2.615 3.403a1 1 0 0 0 1.75-.329l1.567-5.34')
|
|
23
|
+
s.path(d: 'M7 18 4 9')
|
|
24
|
+
s.circle(cx: '12', cy: '4', r: '2')
|
|
25
|
+
s.circle(cx: '20', cy: '7', r: '2')
|
|
26
|
+
s.circle(cx: '4', cy: '7', r: '2')
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class ChessRook < 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(
|
|
18
|
+
d: 'M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z'
|
|
19
|
+
)
|
|
20
|
+
s.path(d: 'M10 2v2')
|
|
21
|
+
s.path(d: 'M14 2v2')
|
|
22
|
+
s.path(d: 'm17 18-1-9')
|
|
23
|
+
s.path(d: 'M6 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2')
|
|
24
|
+
s.path(d: 'M6 4h12')
|
|
25
|
+
s.path(d: 'm7 18 1-9')
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
@@ -14,12 +14,12 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
+
s.path(d: 'M18 19a5 5 0 0 1-5-5v8')
|
|
17
18
|
s.path(
|
|
18
19
|
d:
|
|
19
20
|
'M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5'
|
|
20
21
|
)
|
|
21
22
|
s.circle(cx: '13', cy: '12', r: '2')
|
|
22
|
-
s.path(d: 'M18 19c-2.8 0-5-2.2-5-5v8')
|
|
23
23
|
s.circle(cx: '20', cy: '19', r: '2')
|
|
24
24
|
end
|
|
25
25
|
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.554.0'
|
|
6
6
|
VARIANTS = nil
|
|
7
7
|
|
|
8
8
|
extend Phlex::Kit
|
|
@@ -279,6 +279,7 @@ module PhlexIcons
|
|
|
279
279
|
autoload :CalendarSync, 'phlex-icons/lucide/calendar_sync'
|
|
280
280
|
autoload :CalendarX, 'phlex-icons/lucide/calendar_x'
|
|
281
281
|
autoload :CalendarX2, 'phlex-icons/lucide/calendar_x_2'
|
|
282
|
+
autoload :Calendars, 'phlex-icons/lucide/calendars'
|
|
282
283
|
autoload :Camera, 'phlex-icons/lucide/camera'
|
|
283
284
|
autoload :CameraOff, 'phlex-icons/lucide/camera_off'
|
|
284
285
|
autoload :Candy, 'phlex-icons/lucide/candy'
|
|
@@ -329,6 +330,12 @@ module PhlexIcons
|
|
|
329
330
|
autoload :CheckLine, 'phlex-icons/lucide/check_line'
|
|
330
331
|
autoload :ChefHat, 'phlex-icons/lucide/chef_hat'
|
|
331
332
|
autoload :Cherry, 'phlex-icons/lucide/cherry'
|
|
333
|
+
autoload :ChessBishop, 'phlex-icons/lucide/chess_bishop'
|
|
334
|
+
autoload :ChessKing, 'phlex-icons/lucide/chess_king'
|
|
335
|
+
autoload :ChessKnight, 'phlex-icons/lucide/chess_knight'
|
|
336
|
+
autoload :ChessPawn, 'phlex-icons/lucide/chess_pawn'
|
|
337
|
+
autoload :ChessQueen, 'phlex-icons/lucide/chess_queen'
|
|
338
|
+
autoload :ChessRook, 'phlex-icons/lucide/chess_rook'
|
|
332
339
|
autoload :ChevronDown, 'phlex-icons/lucide/chevron_down'
|
|
333
340
|
autoload :ChevronFirst, 'phlex-icons/lucide/chevron_first'
|
|
334
341
|
autoload :ChevronLast, 'phlex-icons/lucide/chevron_last'
|
|
@@ -637,7 +644,7 @@ module PhlexIcons
|
|
|
637
644
|
autoload :FileXCorner, 'phlex-icons/lucide/file_x_corner'
|
|
638
645
|
autoload :Files, 'phlex-icons/lucide/files'
|
|
639
646
|
autoload :Film, 'phlex-icons/lucide/film'
|
|
640
|
-
autoload :
|
|
647
|
+
autoload :FingerprintPattern, 'phlex-icons/lucide/fingerprint_pattern'
|
|
641
648
|
autoload :FireExtinguisher, 'phlex-icons/lucide/fire_extinguisher'
|
|
642
649
|
autoload :Fish, 'phlex-icons/lucide/fish'
|
|
643
650
|
autoload :FishOff, 'phlex-icons/lucide/fish_off'
|
data/lib/phlex-icons/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phlex-icons-lucide
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.46.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -326,6 +326,7 @@ files:
|
|
|
326
326
|
- lib/phlex-icons/lucide/calendar_sync.rb
|
|
327
327
|
- lib/phlex-icons/lucide/calendar_x.rb
|
|
328
328
|
- lib/phlex-icons/lucide/calendar_x_2.rb
|
|
329
|
+
- lib/phlex-icons/lucide/calendars.rb
|
|
329
330
|
- lib/phlex-icons/lucide/camera.rb
|
|
330
331
|
- lib/phlex-icons/lucide/camera_off.rb
|
|
331
332
|
- lib/phlex-icons/lucide/candy.rb
|
|
@@ -376,6 +377,12 @@ files:
|
|
|
376
377
|
- lib/phlex-icons/lucide/check_line.rb
|
|
377
378
|
- lib/phlex-icons/lucide/chef_hat.rb
|
|
378
379
|
- lib/phlex-icons/lucide/cherry.rb
|
|
380
|
+
- lib/phlex-icons/lucide/chess_bishop.rb
|
|
381
|
+
- lib/phlex-icons/lucide/chess_king.rb
|
|
382
|
+
- lib/phlex-icons/lucide/chess_knight.rb
|
|
383
|
+
- lib/phlex-icons/lucide/chess_pawn.rb
|
|
384
|
+
- lib/phlex-icons/lucide/chess_queen.rb
|
|
385
|
+
- lib/phlex-icons/lucide/chess_rook.rb
|
|
379
386
|
- lib/phlex-icons/lucide/chevron_down.rb
|
|
380
387
|
- lib/phlex-icons/lucide/chevron_first.rb
|
|
381
388
|
- lib/phlex-icons/lucide/chevron_last.rb
|
|
@@ -684,7 +691,7 @@ files:
|
|
|
684
691
|
- lib/phlex-icons/lucide/file_x_corner.rb
|
|
685
692
|
- lib/phlex-icons/lucide/files.rb
|
|
686
693
|
- lib/phlex-icons/lucide/film.rb
|
|
687
|
-
- lib/phlex-icons/lucide/
|
|
694
|
+
- lib/phlex-icons/lucide/fingerprint_pattern.rb
|
|
688
695
|
- lib/phlex-icons/lucide/fire_extinguisher.rb
|
|
689
696
|
- lib/phlex-icons/lucide/fish.rb
|
|
690
697
|
- lib/phlex-icons/lucide/fish_off.rb
|