phlex-icons-lucide 2.44.0 → 2.45.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/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.rb +7 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +7 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d34bd0dd2fccdf84dcace96d3c81b5e62b828f3c050922cd9a63c50d7aac2326
|
|
4
|
+
data.tar.gz: a22e628eaca793516f53a35ea810f6cd95320ea70b2d4c0a9dee0b73a82875e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 205733f8f6be63f154357665c879f0d4fe0652d54828f8a0ac49f898662a2290c3ded40c078ce2f981f2a2bb5bb4a47c5968abbe6ed1fe93bc7e5b98fdb6f1ea
|
|
7
|
+
data.tar.gz: 1c53c22444bfa9ec3ed4a75f5bb8df16fbee3e9cf864167721bdd33f5dd17c624ac3ce3722e70a701df30167d4a481ea0674fc10d2f4616557688185648089dd
|
|
@@ -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
|
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.553.0'
|
|
6
6
|
VARIANTS = nil
|
|
7
7
|
|
|
8
8
|
extend Phlex::Kit
|
|
@@ -329,6 +329,12 @@ module PhlexIcons
|
|
|
329
329
|
autoload :CheckLine, 'phlex-icons/lucide/check_line'
|
|
330
330
|
autoload :ChefHat, 'phlex-icons/lucide/chef_hat'
|
|
331
331
|
autoload :Cherry, 'phlex-icons/lucide/cherry'
|
|
332
|
+
autoload :ChessBishop, 'phlex-icons/lucide/chess_bishop'
|
|
333
|
+
autoload :ChessKing, 'phlex-icons/lucide/chess_king'
|
|
334
|
+
autoload :ChessKnight, 'phlex-icons/lucide/chess_knight'
|
|
335
|
+
autoload :ChessPawn, 'phlex-icons/lucide/chess_pawn'
|
|
336
|
+
autoload :ChessQueen, 'phlex-icons/lucide/chess_queen'
|
|
337
|
+
autoload :ChessRook, 'phlex-icons/lucide/chess_rook'
|
|
332
338
|
autoload :ChevronDown, 'phlex-icons/lucide/chevron_down'
|
|
333
339
|
autoload :ChevronFirst, 'phlex-icons/lucide/chevron_first'
|
|
334
340
|
autoload :ChevronLast, 'phlex-icons/lucide/chevron_last'
|
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.45.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -376,6 +376,12 @@ files:
|
|
|
376
376
|
- lib/phlex-icons/lucide/check_line.rb
|
|
377
377
|
- lib/phlex-icons/lucide/chef_hat.rb
|
|
378
378
|
- lib/phlex-icons/lucide/cherry.rb
|
|
379
|
+
- lib/phlex-icons/lucide/chess_bishop.rb
|
|
380
|
+
- lib/phlex-icons/lucide/chess_king.rb
|
|
381
|
+
- lib/phlex-icons/lucide/chess_knight.rb
|
|
382
|
+
- lib/phlex-icons/lucide/chess_pawn.rb
|
|
383
|
+
- lib/phlex-icons/lucide/chess_queen.rb
|
|
384
|
+
- lib/phlex-icons/lucide/chess_rook.rb
|
|
379
385
|
- lib/phlex-icons/lucide/chevron_down.rb
|
|
380
386
|
- lib/phlex-icons/lucide/chevron_first.rb
|
|
381
387
|
- lib/phlex-icons/lucide/chevron_last.rb
|