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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61becfb8bd685e6cd3c6b84fe65902f8d44ded3a4441eb03ce774c4d8641e62e
4
- data.tar.gz: 567d8046bace793f00aa4ac40c6b8a73697c67888f73a6116c32227d527d0b5b
3
+ metadata.gz: 8d1cd4f2440edc9255c63d8f571d307bffb9e6684162570d992071638361b69b
4
+ data.tar.gz: eea24e472c62337e207bbc51ed4ac5bf488cde3c8253f639ebe7ec19feaaf971
5
5
  SHA512:
6
- metadata.gz: b832767dadd41cdcc7aca107acc056af1a3a542654782837bf1a13c1b0ffe6d46864834a47992e5ad7efcb70619df1e15e8ec22aa54bd535716e08cf3b3e81a8
7
- data.tar.gz: 1a2b3e1110d2857cb38d1895b080e9f1f7518c7f69bbde848e113b1bdc2f994d1f0b1b499b866fe7549ae95dce0b34951daf910677e46d1ad1f1252618546116
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(d: 'M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z')
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.path(
18
- d: 'M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2'
19
- )
20
- s.path(d: 'M10 22H8')
21
- s.path(d: 'M16 22h-2')
22
- s.circle(cx: '8', cy: '8', r: '2')
23
- s.path(d: 'M9.414 9.414 12 12')
24
- s.path(d: 'M14.8 14.8 18 18')
25
- s.circle(cx: '8', cy: '16', r: '2')
26
- s.path(d: 'm18 6-8.586 8.586')
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: '20', height: '20', x: '2', y: '2', rx: '2')
18
- s.circle(cx: '8', cy: '8', r: '2')
19
- s.path(d: 'M9.414 9.414 12 12')
20
- s.path(d: 'M14.8 14.8 18 18')
21
- s.circle(cx: '8', cy: '16', r: '2')
22
- s.path(d: 'm18 6-8.586 8.586')
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 9a4 4 0 0 0-2 7.5')
18
- s.path(d: 'M12 3v2')
19
- s.path(d: 'm6.6 18.4-1.4 1.4')
20
- s.path(d: 'M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z')
21
- s.path(d: 'M4 13H2')
22
- s.path(d: 'M6.34 7.34 4.93 5.93')
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
@@ -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'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.47.0'
4
+ VERSION = '2.48.0'
5
5
  end
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.47.0
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