phlex-icons-lucide 2.47.0 → 2.48.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/plug.rb +4 -2
- data/lib/phlex-icons/lucide/scooter.rb +27 -0
- data/lib/phlex-icons/lucide/square_bottom_dashed_scissors.rb +16 -10
- data/lib/phlex-icons/lucide/square_scissors.rb +6 -6
- data/lib/phlex-icons/lucide/thermometer_sun.rb +6 -6
- data/lib/phlex-icons/lucide.rb +1 -0
- data/lib/phlex-icons/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d1cd4f2440edc9255c63d8f571d307bffb9e6684162570d992071638361b69b
|
|
4
|
+
data.tar.gz: eea24e472c62337e207bbc51ed4ac5bf488cde3c8253f639ebe7ec19feaaf971
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac9214f0ae34f232023c08fa4a4b9dde0e041658b293902eae8daf7e4047703d963af9a867c4c594393d22a9cb9341ffb43a5e89d6eea3bf64195ad1324ed44e
|
|
7
|
+
data.tar.gz: 260dc446be5209d5a423627341499fbb0d35689611304063180721444e8b534fd72baa7656841b56a4890d35648bf53be8551ff3a5a6867e2fc30513264735ed
|
|
@@ -15,9 +15,11 @@ module PhlexIcons
|
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
17
|
s.path(d: 'M12 22v-5')
|
|
18
|
-
s.path(d: 'M9 8V2')
|
|
19
18
|
s.path(d: 'M15 8V2')
|
|
20
|
-
s.path(
|
|
19
|
+
s.path(
|
|
20
|
+
d: 'M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z'
|
|
21
|
+
)
|
|
22
|
+
s.path(d: 'M9 8V2')
|
|
21
23
|
end
|
|
22
24
|
end
|
|
23
25
|
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class Scooter < 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: 'M21 4h-3.5l2 11.05')
|
|
18
|
+
s.path(
|
|
19
|
+
d: 'M6.95 17h5.142c.523 0 .95-.406 1.063-.916a6.5 6.5 0 0 1 5.345-5.009'
|
|
20
|
+
)
|
|
21
|
+
s.circle(cx: '19.5', cy: '17.5', r: '2.5')
|
|
22
|
+
s.circle(cx: '4.5', cy: '17.5', r: '2.5')
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# rubocop:disable Metrics/MethodLength
|
|
3
4
|
module PhlexIcons
|
|
4
5
|
module Lucide
|
|
5
6
|
class SquareBottomDashedScissors < Base
|
|
@@ -14,18 +15,23 @@ module PhlexIcons
|
|
|
14
15
|
stroke_linecap: 'round',
|
|
15
16
|
stroke_linejoin: 'round'
|
|
16
17
|
) do |s|
|
|
17
|
-
s.
|
|
18
|
-
|
|
19
|
-
)
|
|
20
|
-
s.
|
|
21
|
-
s.
|
|
22
|
-
s.
|
|
23
|
-
s.path(d: '
|
|
24
|
-
s.path(d: '
|
|
25
|
-
s.
|
|
26
|
-
s.
|
|
18
|
+
s.line(x1: '5', y1: '3', x2: '19', y2: '3')
|
|
19
|
+
s.line(x1: '3', y1: '5', x2: '3', y2: '19')
|
|
20
|
+
s.line(x1: '21', y1: '5', x2: '21', y2: '19')
|
|
21
|
+
s.line(x1: '9', y1: '21', x2: '10', y2: '21')
|
|
22
|
+
s.line(x1: '14', y1: '21', x2: '15', y2: '21')
|
|
23
|
+
s.path(d: 'M 3 5 A2 2 0 0 1 5 3')
|
|
24
|
+
s.path(d: 'M 19 3 A2 2 0 0 1 21 5')
|
|
25
|
+
s.path(d: 'M 5 21 A2 2 0 0 1 3 19')
|
|
26
|
+
s.path(d: 'M 21 19 A2 2 0 0 1 19 21')
|
|
27
|
+
s.circle(cx: '8.5', cy: '8.5', r: '1.5')
|
|
28
|
+
s.line(x1: '9.56066', y1: '9.56066', x2: '12', y2: '12')
|
|
29
|
+
s.line(x1: '17', y1: '17', x2: '14.82', y2: '14.82')
|
|
30
|
+
s.circle(cx: '8.5', cy: '15.5', r: '1.5')
|
|
31
|
+
s.line(x1: '9.56066', y1: '14.43934', x2: '17', y2: '7')
|
|
27
32
|
end
|
|
28
33
|
end
|
|
29
34
|
end
|
|
30
35
|
end
|
|
31
36
|
end
|
|
37
|
+
# rubocop:enable Metrics/MethodLength
|
|
@@ -14,12 +14,12 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
-
s.rect(width: '
|
|
18
|
-
s.circle(cx: '8', cy: '8', r: '
|
|
19
|
-
s.
|
|
20
|
-
s.
|
|
21
|
-
s.circle(cx: '8', cy: '
|
|
22
|
-
s.
|
|
17
|
+
s.rect(width: '18', height: '18', x: '3', y: '3', rx: '2')
|
|
18
|
+
s.circle(cx: '8.5', cy: '8.5', r: '1.5')
|
|
19
|
+
s.line(x1: '9.56066', y1: '9.56066', x2: '12', y2: '12')
|
|
20
|
+
s.line(x1: '17', y1: '17', x2: '14.82', y2: '14.82')
|
|
21
|
+
s.circle(cx: '8.5', cy: '15.5', r: '1.5')
|
|
22
|
+
s.line(x1: '9.56066', y1: '14.43934', x2: '17', y2: '7')
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
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: 'M12
|
|
18
|
-
s.path(d: 'M12
|
|
19
|
-
s.path(d: '
|
|
20
|
-
s.path(d: 'M20
|
|
21
|
-
s.path(d: '
|
|
22
|
-
s.path(d: '
|
|
17
|
+
s.path(d: 'M12 2v2')
|
|
18
|
+
s.path(d: 'M12 8a4 4 0 0 0-1.645 7.647')
|
|
19
|
+
s.path(d: 'M2 12h2')
|
|
20
|
+
s.path(d: 'M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z')
|
|
21
|
+
s.path(d: 'm4.93 4.93 1.41 1.41')
|
|
22
|
+
s.path(d: 'm6.34 17.66-1.41 1.41')
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
end
|
data/lib/phlex-icons/lucide.rb
CHANGED
|
@@ -1266,6 +1266,7 @@ module PhlexIcons
|
|
|
1266
1266
|
autoload :School, 'phlex-icons/lucide/school'
|
|
1267
1267
|
autoload :Scissors, 'phlex-icons/lucide/scissors'
|
|
1268
1268
|
autoload :ScissorsLineDashed, 'phlex-icons/lucide/scissors_line_dashed'
|
|
1269
|
+
autoload :Scooter, 'phlex-icons/lucide/scooter'
|
|
1269
1270
|
autoload :ScreenShare, 'phlex-icons/lucide/screen_share'
|
|
1270
1271
|
autoload :ScreenShareOff, 'phlex-icons/lucide/screen_share_off'
|
|
1271
1272
|
autoload :Scroll, 'phlex-icons/lucide/scroll'
|
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.48.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -1313,6 +1313,7 @@ files:
|
|
|
1313
1313
|
- lib/phlex-icons/lucide/school.rb
|
|
1314
1314
|
- lib/phlex-icons/lucide/scissors.rb
|
|
1315
1315
|
- lib/phlex-icons/lucide/scissors_line_dashed.rb
|
|
1316
|
+
- lib/phlex-icons/lucide/scooter.rb
|
|
1316
1317
|
- lib/phlex-icons/lucide/screen_share.rb
|
|
1317
1318
|
- lib/phlex-icons/lucide/screen_share_off.rb
|
|
1318
1319
|
- lib/phlex-icons/lucide/scroll.rb
|