phlex-icons-lucide 2.46.0 → 2.47.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/book_search.rb +25 -0
- data/lib/phlex-icons/lucide/form.rb +25 -0
- data/lib/phlex-icons/lucide/scale.rb +4 -4
- data/lib/phlex-icons/lucide/waves_arrow_down.rb +33 -0
- data/lib/phlex-icons/lucide/waves_arrow_up.rb +31 -0
- data/lib/phlex-icons/lucide.rb +5 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +5 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61becfb8bd685e6cd3c6b84fe65902f8d44ded3a4441eb03ce774c4d8641e62e
|
|
4
|
+
data.tar.gz: 567d8046bace793f00aa4ac40c6b8a73697c67888f73a6116c32227d527d0b5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b832767dadd41cdcc7aca107acc056af1a3a542654782837bf1a13c1b0ffe6d46864834a47992e5ad7efcb70619df1e15e8ec22aa54bd535716e08cf3b3e81a8
|
|
7
|
+
data.tar.gz: 1a2b3e1110d2857cb38d1895b080e9f1f7518c7f69bbde848e113b1bdc2f994d1f0b1b499b866fe7549ae95dce0b34951daf910677e46d1ad1f1252618546116
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class BookSearch < 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: 'M11 22H5.5a1 1 0 0 1 0-5h4.501')
|
|
18
|
+
s.path(d: 'm21 22-1.879-1.878')
|
|
19
|
+
s.path(d: 'M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8')
|
|
20
|
+
s.circle(cx: '17', cy: '18', r: '3')
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class Form < 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: 'M4 14h6')
|
|
18
|
+
s.path(d: 'M4 2h10')
|
|
19
|
+
s.rect(x: '4', y: '18', width: '16', height: '4', rx: '1')
|
|
20
|
+
s.rect(x: '4', y: '6', width: '16', height: '4', rx: '1')
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -14,11 +14,11 @@ module PhlexIcons
|
|
|
14
14
|
stroke_linecap: 'round',
|
|
15
15
|
stroke_linejoin: 'round'
|
|
16
16
|
) do |s|
|
|
17
|
-
s.path(d: 'm16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z')
|
|
18
|
-
s.path(d: 'm2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z')
|
|
19
|
-
s.path(d: 'M7 21h10')
|
|
20
17
|
s.path(d: 'M12 3v18')
|
|
21
|
-
s.path(d: '
|
|
18
|
+
s.path(d: 'm19 8 3 8a5 5 0 0 1-6 0zV7')
|
|
19
|
+
s.path(d: 'M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1')
|
|
20
|
+
s.path(d: 'm5 8 3 8a5 5 0 0 1-6 0zV7')
|
|
21
|
+
s.path(d: 'M7 21h10')
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
|
4
|
+
module PhlexIcons
|
|
5
|
+
module Lucide
|
|
6
|
+
class WavesArrowDown < 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: 'M12 10L12 2')
|
|
19
|
+
s.path(d: 'M16 6L12 10L8 6')
|
|
20
|
+
s.path(
|
|
21
|
+
d:
|
|
22
|
+
'M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15'
|
|
23
|
+
)
|
|
24
|
+
s.path(
|
|
25
|
+
d:
|
|
26
|
+
'M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21'
|
|
27
|
+
)
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
# rubocop:enable Layout/LineLength
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class WavesArrowUp < 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: 'M12 2v8')
|
|
18
|
+
s.path(
|
|
19
|
+
d:
|
|
20
|
+
'M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'
|
|
21
|
+
)
|
|
22
|
+
s.path(
|
|
23
|
+
d:
|
|
24
|
+
'M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'
|
|
25
|
+
)
|
|
26
|
+
s.path(d: 'm8 6 4-4 4 4')
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
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.555.0'
|
|
6
6
|
VARIANTS = nil
|
|
7
7
|
|
|
8
8
|
extend Phlex::Kit
|
|
@@ -211,6 +211,7 @@ module PhlexIcons
|
|
|
211
211
|
autoload :BookOpenCheck, 'phlex-icons/lucide/book_open_check'
|
|
212
212
|
autoload :BookOpenText, 'phlex-icons/lucide/book_open_text'
|
|
213
213
|
autoload :BookPlus, 'phlex-icons/lucide/book_plus'
|
|
214
|
+
autoload :BookSearch, 'phlex-icons/lucide/book_search'
|
|
214
215
|
autoload :BookText, 'phlex-icons/lucide/book_text'
|
|
215
216
|
autoload :BookType, 'phlex-icons/lucide/book_type'
|
|
216
217
|
autoload :BookUp, 'phlex-icons/lucide/book_up'
|
|
@@ -702,6 +703,7 @@ module PhlexIcons
|
|
|
702
703
|
autoload :Folders, 'phlex-icons/lucide/folders'
|
|
703
704
|
autoload :Footprints, 'phlex-icons/lucide/footprints'
|
|
704
705
|
autoload :Forklift, 'phlex-icons/lucide/forklift'
|
|
706
|
+
autoload :Form, 'phlex-icons/lucide/form'
|
|
705
707
|
autoload :Forward, 'phlex-icons/lucide/forward'
|
|
706
708
|
autoload :Frame, 'phlex-icons/lucide/frame'
|
|
707
709
|
autoload :Framer, 'phlex-icons/lucide/framer'
|
|
@@ -1628,6 +1630,8 @@ module PhlexIcons
|
|
|
1628
1630
|
autoload :WashingMachine, 'phlex-icons/lucide/washing_machine'
|
|
1629
1631
|
autoload :Watch, 'phlex-icons/lucide/watch'
|
|
1630
1632
|
autoload :Waves, 'phlex-icons/lucide/waves'
|
|
1633
|
+
autoload :WavesArrowDown, 'phlex-icons/lucide/waves_arrow_down'
|
|
1634
|
+
autoload :WavesArrowUp, 'phlex-icons/lucide/waves_arrow_up'
|
|
1631
1635
|
autoload :WavesLadder, 'phlex-icons/lucide/waves_ladder'
|
|
1632
1636
|
autoload :Waypoints, 'phlex-icons/lucide/waypoints'
|
|
1633
1637
|
autoload :Webcam, 'phlex-icons/lucide/webcam'
|
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.47.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ali Hamdi Ali Fadel
|
|
@@ -258,6 +258,7 @@ files:
|
|
|
258
258
|
- lib/phlex-icons/lucide/book_open_check.rb
|
|
259
259
|
- lib/phlex-icons/lucide/book_open_text.rb
|
|
260
260
|
- lib/phlex-icons/lucide/book_plus.rb
|
|
261
|
+
- lib/phlex-icons/lucide/book_search.rb
|
|
261
262
|
- lib/phlex-icons/lucide/book_text.rb
|
|
262
263
|
- lib/phlex-icons/lucide/book_type.rb
|
|
263
264
|
- lib/phlex-icons/lucide/book_up.rb
|
|
@@ -749,6 +750,7 @@ files:
|
|
|
749
750
|
- lib/phlex-icons/lucide/folders.rb
|
|
750
751
|
- lib/phlex-icons/lucide/footprints.rb
|
|
751
752
|
- lib/phlex-icons/lucide/forklift.rb
|
|
753
|
+
- lib/phlex-icons/lucide/form.rb
|
|
752
754
|
- lib/phlex-icons/lucide/forward.rb
|
|
753
755
|
- lib/phlex-icons/lucide/frame.rb
|
|
754
756
|
- lib/phlex-icons/lucide/framer.rb
|
|
@@ -1675,6 +1677,8 @@ files:
|
|
|
1675
1677
|
- lib/phlex-icons/lucide/washing_machine.rb
|
|
1676
1678
|
- lib/phlex-icons/lucide/watch.rb
|
|
1677
1679
|
- lib/phlex-icons/lucide/waves.rb
|
|
1680
|
+
- lib/phlex-icons/lucide/waves_arrow_down.rb
|
|
1681
|
+
- lib/phlex-icons/lucide/waves_arrow_up.rb
|
|
1678
1682
|
- lib/phlex-icons/lucide/waves_ladder.rb
|
|
1679
1683
|
- lib/phlex-icons/lucide/waypoints.rb
|
|
1680
1684
|
- lib/phlex-icons/lucide/webcam.rb
|