phlex-icons-lucide 2.41.0 → 2.43.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/generators/huge.rb +1 -0
- data/lib/phlex-icons/lucide/birdhouse.rb +27 -0
- data/lib/phlex-icons/lucide/gamepad_directional.rb +39 -0
- data/lib/phlex-icons/lucide/monitor_cloud.rb +25 -0
- data/lib/phlex-icons/lucide/sword.rb +4 -4
- data/lib/phlex-icons/lucide.rb +4 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc0429953c3f8921e57b6e69a4d3ecce8e7c01198904c003a4549a75ade4609a
|
|
4
|
+
data.tar.gz: 1f4582e6e5566f1779b224248b8004a6cb61024d97b19763cfbb94ceb6b1b815
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36ee76b31be12321168605db76347fd6ad0d407b35101f7787f749df3cbb9ca1effb59a813240b167e6e3dfe8b48e21de50ce7ffa727d7c50c541147e50de3f6
|
|
7
|
+
data.tar.gz: 41c04f5bd4e7b75ff449338a98ea3bcbc040b98900daff335d740e1f0a60e5e5052bf1913f6497505039732d719aad775d9b0403543076fb26dd46f3e67f121c
|
data/generators/huge.rb
CHANGED
|
@@ -89,6 +89,7 @@ def read_and_convert_icon(icon_file_path)
|
|
|
89
89
|
icon_file_content = File.read(icon_file_path)
|
|
90
90
|
.sub('width="24"', '')
|
|
91
91
|
.sub('height="24"', '')
|
|
92
|
+
.gsub(/stroke="#[0-9A-Fa-f]{6}"/, 'stroke="currentColor"')
|
|
92
93
|
|
|
93
94
|
Phlexing::Converter.convert(icon_file_content).sub('svg(', "svg(\n**attrs,")
|
|
94
95
|
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class Birdhouse < 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 18v4')
|
|
18
|
+
s.path(d: 'm17 18 1.956-11.468')
|
|
19
|
+
s.path(d: 'm3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8')
|
|
20
|
+
s.path(d: 'M4 18h16')
|
|
21
|
+
s.path(d: 'M7 18 5.044 6.532')
|
|
22
|
+
s.circle(cx: '12', cy: '10', r: '2')
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class GamepadDirectional < 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:
|
|
20
|
+
'M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z'
|
|
21
|
+
)
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z'
|
|
25
|
+
)
|
|
26
|
+
s.path(
|
|
27
|
+
d:
|
|
28
|
+
'M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z'
|
|
29
|
+
)
|
|
30
|
+
s.path(
|
|
31
|
+
d:
|
|
32
|
+
'M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z'
|
|
33
|
+
)
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class MonitorCloud < 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: 'M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z')
|
|
18
|
+
s.path(d: 'M12 17v4')
|
|
19
|
+
s.path(d: 'M8 21h8')
|
|
20
|
+
s.rect(x: '2', y: '3', width: '20', height: '14', rx: '2')
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -14,10 +14,10 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
-
s.
|
|
18
|
-
s.
|
|
19
|
-
s.
|
|
20
|
-
s.
|
|
17
|
+
s.path(d: 'm11 19-6-6')
|
|
18
|
+
s.path(d: 'm5 21-2-2')
|
|
19
|
+
s.path(d: 'm8 16-4 4')
|
|
20
|
+
s.path(d: 'M9.5 17.5 21 6V3h-3L6.5 14.5')
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
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.548.0'
|
|
6
6
|
VARIANTS = nil
|
|
7
7
|
|
|
8
8
|
extend Phlex::Kit
|
|
@@ -179,6 +179,7 @@ module PhlexIcons
|
|
|
179
179
|
autoload :Binoculars, 'phlex-icons/lucide/binoculars'
|
|
180
180
|
autoload :Biohazard, 'phlex-icons/lucide/biohazard'
|
|
181
181
|
autoload :Bird, 'phlex-icons/lucide/bird'
|
|
182
|
+
autoload :Birdhouse, 'phlex-icons/lucide/birdhouse'
|
|
182
183
|
autoload :Bitcoin, 'phlex-icons/lucide/bitcoin'
|
|
183
184
|
autoload :Blend, 'phlex-icons/lucide/blend'
|
|
184
185
|
autoload :Blinds, 'phlex-icons/lucide/blinds'
|
|
@@ -713,6 +714,7 @@ module PhlexIcons
|
|
|
713
714
|
autoload :GalleryVerticalEnd, 'phlex-icons/lucide/gallery_vertical_end'
|
|
714
715
|
autoload :Gamepad, 'phlex-icons/lucide/gamepad'
|
|
715
716
|
autoload :Gamepad2, 'phlex-icons/lucide/gamepad_2'
|
|
717
|
+
autoload :GamepadDirectional, 'phlex-icons/lucide/gamepad_directional'
|
|
716
718
|
autoload :Gauge, 'phlex-icons/lucide/gauge'
|
|
717
719
|
autoload :Gavel, 'phlex-icons/lucide/gavel'
|
|
718
720
|
autoload :Gem, 'phlex-icons/lucide/gem'
|
|
@@ -995,6 +997,7 @@ module PhlexIcons
|
|
|
995
997
|
autoload :Minus, 'phlex-icons/lucide/minus'
|
|
996
998
|
autoload :Monitor, 'phlex-icons/lucide/monitor'
|
|
997
999
|
autoload :MonitorCheck, 'phlex-icons/lucide/monitor_check'
|
|
1000
|
+
autoload :MonitorCloud, 'phlex-icons/lucide/monitor_cloud'
|
|
998
1001
|
autoload :MonitorCog, 'phlex-icons/lucide/monitor_cog'
|
|
999
1002
|
autoload :MonitorDot, 'phlex-icons/lucide/monitor_dot'
|
|
1000
1003
|
autoload :MonitorDown, 'phlex-icons/lucide/monitor_down'
|
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.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -226,6 +226,7 @@ files:
|
|
|
226
226
|
- lib/phlex-icons/lucide/binoculars.rb
|
|
227
227
|
- lib/phlex-icons/lucide/biohazard.rb
|
|
228
228
|
- lib/phlex-icons/lucide/bird.rb
|
|
229
|
+
- lib/phlex-icons/lucide/birdhouse.rb
|
|
229
230
|
- lib/phlex-icons/lucide/bitcoin.rb
|
|
230
231
|
- lib/phlex-icons/lucide/blend.rb
|
|
231
232
|
- lib/phlex-icons/lucide/blinds.rb
|
|
@@ -760,6 +761,7 @@ files:
|
|
|
760
761
|
- lib/phlex-icons/lucide/gallery_vertical_end.rb
|
|
761
762
|
- lib/phlex-icons/lucide/gamepad.rb
|
|
762
763
|
- lib/phlex-icons/lucide/gamepad_2.rb
|
|
764
|
+
- lib/phlex-icons/lucide/gamepad_directional.rb
|
|
763
765
|
- lib/phlex-icons/lucide/gauge.rb
|
|
764
766
|
- lib/phlex-icons/lucide/gavel.rb
|
|
765
767
|
- lib/phlex-icons/lucide/gem.rb
|
|
@@ -1042,6 +1044,7 @@ files:
|
|
|
1042
1044
|
- lib/phlex-icons/lucide/minus.rb
|
|
1043
1045
|
- lib/phlex-icons/lucide/monitor.rb
|
|
1044
1046
|
- lib/phlex-icons/lucide/monitor_check.rb
|
|
1047
|
+
- lib/phlex-icons/lucide/monitor_cloud.rb
|
|
1045
1048
|
- lib/phlex-icons/lucide/monitor_cog.rb
|
|
1046
1049
|
- lib/phlex-icons/lucide/monitor_dot.rb
|
|
1047
1050
|
- lib/phlex-icons/lucide/monitor_down.rb
|