phlex-icons-lucide 2.7.0 → 2.8.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8cd330ba5f9314a32d77a74f2203994a5de405c62793b0d43d4c040a3806dd74
|
4
|
+
data.tar.gz: 9dc9f6b1ae58577b641a214c45b772c99d4daf7bee38440c8b495578e94782c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b5c9a82bf714a937a1dec0cac346f61ddbb87b59cd56ec508bf5449b0d2079cec0b1f76783555258cdf97836e2a85cb80d428ea542e0dd93b761b4fa4dbebcb
|
7
|
+
data.tar.gz: 31c1f02f0bedf8b4e19155f759834f52a507f6ff0ae554282473169f805cdb87a02e8f586c93e19f7f017ccfcea4f3fd7bca8bc70b78607d3a88e61d4a833601
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class BatteryPlus < 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: 'M10 9v6')
|
18
|
+
s.path(d: 'M13.5 7H16a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2.5')
|
19
|
+
s.path(d: 'M22 11v2')
|
20
|
+
s.path(d: 'M6.5 17H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2.5')
|
21
|
+
s.path(d: 'M7 12h6')
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -14,10 +14,14 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: '
|
18
|
-
s.path(d: '
|
19
|
-
s.path(d: 'M21
|
20
|
-
s.path(d: '
|
17
|
+
s.path(d: 'm15 15 6 6')
|
18
|
+
s.path(d: 'm15 9 6-6')
|
19
|
+
s.path(d: 'M21 16.2V21h-4.8')
|
20
|
+
s.path(d: 'M21 7.8V3h-4.8')
|
21
|
+
s.path(d: 'M3 16.2V21h4.8')
|
22
|
+
s.path(d: 'm3 21 6-6')
|
23
|
+
s.path(d: 'M3 7.8V3h4.8')
|
24
|
+
s.path(d: 'M9 9 3 3')
|
21
25
|
end
|
22
26
|
end
|
23
27
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class MapPlus < 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 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12'
|
21
|
+
)
|
22
|
+
s.path(d: 'M15 5.764V12')
|
23
|
+
s.path(d: 'M18 15v6')
|
24
|
+
s.path(d: 'M21 18h-6')
|
25
|
+
s.path(d: 'M9 3.236v15')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
# rubocop:enable Layout/LineLength
|
@@ -20,7 +20,7 @@ module PhlexIcons
|
|
20
20
|
'M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z'
|
21
21
|
)
|
22
22
|
s.path(d: 'M12 22V12')
|
23
|
-
s.
|
23
|
+
s.polyline(points: '3.29 7 12 12 20.71 7')
|
24
24
|
s.path(d: 'm7.5 4.27 9 5.15')
|
25
25
|
end
|
26
26
|
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.474.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -150,6 +150,7 @@ module PhlexIcons
|
|
150
150
|
autoload :BatteryFull, 'phlex-icons/lucide/battery_full'
|
151
151
|
autoload :BatteryLow, 'phlex-icons/lucide/battery_low'
|
152
152
|
autoload :BatteryMedium, 'phlex-icons/lucide/battery_medium'
|
153
|
+
autoload :BatteryPlus, 'phlex-icons/lucide/battery_plus'
|
153
154
|
autoload :BatteryWarning, 'phlex-icons/lucide/battery_warning'
|
154
155
|
autoload :Beaker, 'phlex-icons/lucide/beaker'
|
155
156
|
autoload :Bean, 'phlex-icons/lucide/bean'
|
@@ -898,6 +899,7 @@ module PhlexIcons
|
|
898
899
|
autoload :MapPinX, 'phlex-icons/lucide/map_pin_x'
|
899
900
|
autoload :MapPinXInside, 'phlex-icons/lucide/map_pin_x_inside'
|
900
901
|
autoload :MapPinned, 'phlex-icons/lucide/map_pinned'
|
902
|
+
autoload :MapPlus, 'phlex-icons/lucide/map_plus'
|
901
903
|
autoload :Martini, 'phlex-icons/lucide/martini'
|
902
904
|
autoload :Maximize, 'phlex-icons/lucide/maximize'
|
903
905
|
autoload :Maximize2, 'phlex-icons/lucide/maximize_2'
|
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: 2.
|
4
|
+
version: 2.8.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: 2025-01-
|
11
|
+
date: 2025-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -194,6 +194,7 @@ files:
|
|
194
194
|
- lib/phlex-icons/lucide/battery_full.rb
|
195
195
|
- lib/phlex-icons/lucide/battery_low.rb
|
196
196
|
- lib/phlex-icons/lucide/battery_medium.rb
|
197
|
+
- lib/phlex-icons/lucide/battery_plus.rb
|
197
198
|
- lib/phlex-icons/lucide/battery_warning.rb
|
198
199
|
- lib/phlex-icons/lucide/beaker.rb
|
199
200
|
- lib/phlex-icons/lucide/bean.rb
|
@@ -942,6 +943,7 @@ files:
|
|
942
943
|
- lib/phlex-icons/lucide/map_pin_x.rb
|
943
944
|
- lib/phlex-icons/lucide/map_pin_x_inside.rb
|
944
945
|
- lib/phlex-icons/lucide/map_pinned.rb
|
946
|
+
- lib/phlex-icons/lucide/map_plus.rb
|
945
947
|
- lib/phlex-icons/lucide/martini.rb
|
946
948
|
- lib/phlex-icons/lucide/maximize.rb
|
947
949
|
- lib/phlex-icons/lucide/maximize_2.rb
|