phlex-icons-lucide 2.49.0 → 2.50.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/paint_bucket.rb +2 -2
- data/lib/phlex-icons/lucide/stone.rb +29 -0
- data/lib/phlex-icons/lucide/toolbox.rb +31 -0
- data/lib/phlex-icons/lucide.rb +3 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a322777a7912824de495535e782568b5047a2b116b18e8e1d8a2aa1fb11775af
|
|
4
|
+
data.tar.gz: ee387db3ef0fdcc61c808aaec553934a22aad45f4f63c9e0a70e03b93c83ade9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d972bb2975d52925912eadb1aee696e0f207efb380414c8586150cf8eaec7af1d1c9901973bbd0698cd20a585b46128a3e5e4a21c9650c469b65e98aa3c212a0
|
|
7
|
+
data.tar.gz: 3b87670c1650c1d8c644776cbad96834e5abfc7055c879fe7d62f9d5ce8453ed1fac5ebf12155bb3d5b5ba96b2196be5d9f9816b4af166e2722f8db266ea134f
|
|
@@ -15,12 +15,12 @@ module PhlexIcons
|
|
|
15
15
|
stroke_linecap: 'round',
|
|
16
16
|
stroke_linejoin: 'round'
|
|
17
17
|
) do |s|
|
|
18
|
-
s.path(d: '
|
|
18
|
+
s.path(d: 'M11 7 6 2')
|
|
19
|
+
s.path(d: 'M18.992 12H2.041')
|
|
19
20
|
s.path(
|
|
20
21
|
d:
|
|
21
22
|
'M21.145 18.38A3.34 3.34 0 0 1 20 16.5a3.3 3.3 0 0 1-1.145 1.88c-.575.46-.855 1.02-.855 1.595A2 2 0 0 0 20 22a2 2 0 0 0 2-2.025c0-.58-.285-1.13-.855-1.595'
|
|
22
23
|
)
|
|
23
|
-
s.path(d: 'm6 2 5 5')
|
|
24
24
|
s.path(
|
|
25
25
|
d:
|
|
26
26
|
'm8.5 4.5 2.148-2.148a1.205 1.205 0 0 1 1.704 0l7.296 7.296a1.205 1.205 0 0 1 0 1.704l-7.592 7.592a3.615 3.615 0 0 1-5.112 0l-3.888-3.888a3.615 3.615 0 0 1 0-5.112L5.67 7.33'
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class Stone < 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.264 2.205A4 4 0 0 0 6.42 4.211l-4 8a4 4 0 0 0 1.359 5.117l6 4a4 4 0 0 0 4.438 0l6-4a4 4 0 0 0 1.576-4.592l-2-6a4 4 0 0 0-2.53-2.53z'
|
|
21
|
+
)
|
|
22
|
+
s.path(d: 'M11.99 22 14 12l7.822 3.184')
|
|
23
|
+
s.path(d: 'M14 12 8.47 2.302')
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class Toolbox < 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(d: 'M16 12v4')
|
|
19
|
+
s.path(
|
|
20
|
+
d:
|
|
21
|
+
'M16 6a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 22 12v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 .586-1.414l4-4A2 2 0 0 1 8 6z'
|
|
22
|
+
)
|
|
23
|
+
s.path(d: 'M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2')
|
|
24
|
+
s.path(d: 'M2 14h20')
|
|
25
|
+
s.path(d: 'M8 12v4')
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
# rubocop:enable Layout/LineLength
|
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.562.0'
|
|
6
6
|
VARIANTS = nil
|
|
7
7
|
|
|
8
8
|
extend Phlex::Kit
|
|
@@ -1452,6 +1452,7 @@ module PhlexIcons
|
|
|
1452
1452
|
autoload :Stethoscope, 'phlex-icons/lucide/stethoscope'
|
|
1453
1453
|
autoload :Sticker, 'phlex-icons/lucide/sticker'
|
|
1454
1454
|
autoload :StickyNote, 'phlex-icons/lucide/sticky_note'
|
|
1455
|
+
autoload :Stone, 'phlex-icons/lucide/stone'
|
|
1455
1456
|
autoload :Store, 'phlex-icons/lucide/store'
|
|
1456
1457
|
autoload :StretchHorizontal, 'phlex-icons/lucide/stretch_horizontal'
|
|
1457
1458
|
autoload :StretchVertical, 'phlex-icons/lucide/stretch_vertical'
|
|
@@ -1531,6 +1532,7 @@ module PhlexIcons
|
|
|
1531
1532
|
autoload :ToggleRight, 'phlex-icons/lucide/toggle_right'
|
|
1532
1533
|
autoload :Toilet, 'phlex-icons/lucide/toilet'
|
|
1533
1534
|
autoload :ToolCase, 'phlex-icons/lucide/tool_case'
|
|
1535
|
+
autoload :Toolbox, 'phlex-icons/lucide/toolbox'
|
|
1534
1536
|
autoload :Tornado, 'phlex-icons/lucide/tornado'
|
|
1535
1537
|
autoload :Torus, 'phlex-icons/lucide/torus'
|
|
1536
1538
|
autoload :Touchpad, 'phlex-icons/lucide/touchpad'
|
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.50.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -1499,6 +1499,7 @@ files:
|
|
|
1499
1499
|
- lib/phlex-icons/lucide/stethoscope.rb
|
|
1500
1500
|
- lib/phlex-icons/lucide/sticker.rb
|
|
1501
1501
|
- lib/phlex-icons/lucide/sticky_note.rb
|
|
1502
|
+
- lib/phlex-icons/lucide/stone.rb
|
|
1502
1503
|
- lib/phlex-icons/lucide/store.rb
|
|
1503
1504
|
- lib/phlex-icons/lucide/stretch_horizontal.rb
|
|
1504
1505
|
- lib/phlex-icons/lucide/stretch_vertical.rb
|
|
@@ -1578,6 +1579,7 @@ files:
|
|
|
1578
1579
|
- lib/phlex-icons/lucide/toggle_right.rb
|
|
1579
1580
|
- lib/phlex-icons/lucide/toilet.rb
|
|
1580
1581
|
- lib/phlex-icons/lucide/tool_case.rb
|
|
1582
|
+
- lib/phlex-icons/lucide/toolbox.rb
|
|
1581
1583
|
- lib/phlex-icons/lucide/tornado.rb
|
|
1582
1584
|
- lib/phlex-icons/lucide/torus.rb
|
|
1583
1585
|
- lib/phlex-icons/lucide/touchpad.rb
|