phlex-icons-lucide 2.20.0 → 2.21.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f61da8e164aea24f1b61695de84eedd17260d4a8818e99ffe6c9e0083ca9904
|
4
|
+
data.tar.gz: 6a7a4209bd068c90277673cfee2e9ea62e78f18d93a9ef3653f7caf758b0673b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2707352cf434577356d87659a5a5c0fffa7ce61763463cc061d0afbdfe73966c086ee78d3196b8bef54c63609ae68b8c25b6d8ee10488ebf65ac2fd7cdf2ba2
|
7
|
+
data.tar.gz: b983d4d48bfc9e9ec1507c5f1f1c1731f236abe207855500462945ae0e528a673c0f0e7bc4b8d70d94565da35e5ec2c87ae0a1817d1a98748398b061db118e48
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
3
4
|
module PhlexIcons
|
4
5
|
module Lucide
|
5
6
|
class Axe < Base
|
@@ -14,10 +15,14 @@ module PhlexIcons
|
|
14
15
|
stroke_linecap: 'round',
|
15
16
|
stroke_linejoin: 'round'
|
16
17
|
) do |s|
|
17
|
-
s.path(d: 'm14 12-8.
|
18
|
-
s.path(
|
18
|
+
s.path(d: 'm14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9')
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z'
|
22
|
+
)
|
19
23
|
end
|
20
24
|
end
|
21
25
|
end
|
22
26
|
end
|
23
27
|
end
|
28
|
+
# rubocop:enable Layout/LineLength
|
@@ -14,8 +14,8 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: 'M16
|
18
|
-
s.path(d: 'M8
|
17
|
+
s.path(d: 'M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3')
|
18
|
+
s.path(d: 'M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3')
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class CheckLine < 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: 'M20 4L9 15')
|
18
|
+
s.path(d: 'M21 19L3 19')
|
19
|
+
s.path(d: 'M9 15L4 10')
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class Gpu < 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: 'M2 21V3')
|
18
|
+
s.path(d: 'M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26')
|
19
|
+
s.path(d: 'M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3')
|
20
|
+
s.circle(cx: '16', cy: '11', r: '2')
|
21
|
+
s.circle(cx: '8', cy: '11', r: '2')
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
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.510.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -323,6 +323,7 @@ module PhlexIcons
|
|
323
323
|
autoload :ChartSpline, 'phlex-icons/lucide/chart_spline'
|
324
324
|
autoload :Check, 'phlex-icons/lucide/check'
|
325
325
|
autoload :CheckCheck, 'phlex-icons/lucide/check_check'
|
326
|
+
autoload :CheckLine, 'phlex-icons/lucide/check_line'
|
326
327
|
autoload :ChefHat, 'phlex-icons/lucide/chef_hat'
|
327
328
|
autoload :Cherry, 'phlex-icons/lucide/cherry'
|
328
329
|
autoload :ChevronDown, 'phlex-icons/lucide/chevron_down'
|
@@ -730,6 +731,7 @@ module PhlexIcons
|
|
730
731
|
autoload :Globe, 'phlex-icons/lucide/globe'
|
731
732
|
autoload :GlobeLock, 'phlex-icons/lucide/globe_lock'
|
732
733
|
autoload :Goal, 'phlex-icons/lucide/goal'
|
734
|
+
autoload :Gpu, 'phlex-icons/lucide/gpu'
|
733
735
|
autoload :Grab, 'phlex-icons/lucide/grab'
|
734
736
|
autoload :GraduationCap, 'phlex-icons/lucide/graduation_cap'
|
735
737
|
autoload :Grape, 'phlex-icons/lucide/grape'
|
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.21.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-05-
|
11
|
+
date: 2025-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -369,6 +369,7 @@ files:
|
|
369
369
|
- lib/phlex-icons/lucide/chart_spline.rb
|
370
370
|
- lib/phlex-icons/lucide/check.rb
|
371
371
|
- lib/phlex-icons/lucide/check_check.rb
|
372
|
+
- lib/phlex-icons/lucide/check_line.rb
|
372
373
|
- lib/phlex-icons/lucide/chef_hat.rb
|
373
374
|
- lib/phlex-icons/lucide/cherry.rb
|
374
375
|
- lib/phlex-icons/lucide/chevron_down.rb
|
@@ -776,6 +777,7 @@ files:
|
|
776
777
|
- lib/phlex-icons/lucide/globe.rb
|
777
778
|
- lib/phlex-icons/lucide/globe_lock.rb
|
778
779
|
- lib/phlex-icons/lucide/goal.rb
|
780
|
+
- lib/phlex-icons/lucide/gpu.rb
|
779
781
|
- lib/phlex-icons/lucide/grab.rb
|
780
782
|
- lib/phlex-icons/lucide/graduation_cap.rb
|
781
783
|
- lib/phlex-icons/lucide/grape.rb
|