phlex-icons-lucide 2.45.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/ampersand.rb +2 -2
- data/lib/phlex-icons/lucide/anchor.rb +4 -3
- data/lib/phlex-icons/lucide/book_search.rb +25 -0
- data/lib/phlex-icons/lucide/calendars.rb +27 -0
- data/lib/phlex-icons/lucide/{fingerprint.rb → fingerprint_pattern.rb} +1 -1
- data/lib/phlex-icons/lucide/folder_git_2.rb +1 -1
- 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 +7 -2
- data/lib/phlex-icons/version.rb +1 -1
- metadata +7 -2
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
|
|
@@ -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 12h3')
|
|
17
18
|
s.path(
|
|
18
19
|
d:
|
|
19
|
-
'M17.5
|
|
20
|
+
'M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13'
|
|
20
21
|
)
|
|
21
|
-
s.path(d: 'M16 12h3')
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
end
|
|
@@ -14,9 +14,10 @@ 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: '
|
|
19
|
-
s.
|
|
17
|
+
s.path(d: 'M12 6v16')
|
|
18
|
+
s.path(d: 'm19 13 2-1a9 9 0 0 1-18 0l2 1')
|
|
19
|
+
s.path(d: 'M9 11h6')
|
|
20
|
+
s.circle(cx: '12', cy: '4', r: '2')
|
|
20
21
|
end
|
|
21
22
|
end
|
|
22
23
|
end
|
|
@@ -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,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PhlexIcons
|
|
4
|
+
module Lucide
|
|
5
|
+
class Calendars < 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 2v2')
|
|
18
|
+
s.path(d: 'M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2')
|
|
19
|
+
s.path(d: 'M18 2v2')
|
|
20
|
+
s.path(d: 'M2 13h2')
|
|
21
|
+
s.path(d: 'M8 8h14')
|
|
22
|
+
s.rect(x: '8', y: '3', width: '14', height: '14', rx: '2')
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
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: 'M18 19a5 5 0 0 1-5-5v8')
|
|
17
18
|
s.path(
|
|
18
19
|
d:
|
|
19
20
|
'M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5'
|
|
20
21
|
)
|
|
21
22
|
s.circle(cx: '13', cy: '12', r: '2')
|
|
22
|
-
s.path(d: 'M18 19c-2.8 0-5-2.2-5-5v8')
|
|
23
23
|
s.circle(cx: '20', cy: '19', r: '2')
|
|
24
24
|
end
|
|
25
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'
|
|
@@ -279,6 +280,7 @@ module PhlexIcons
|
|
|
279
280
|
autoload :CalendarSync, 'phlex-icons/lucide/calendar_sync'
|
|
280
281
|
autoload :CalendarX, 'phlex-icons/lucide/calendar_x'
|
|
281
282
|
autoload :CalendarX2, 'phlex-icons/lucide/calendar_x_2'
|
|
283
|
+
autoload :Calendars, 'phlex-icons/lucide/calendars'
|
|
282
284
|
autoload :Camera, 'phlex-icons/lucide/camera'
|
|
283
285
|
autoload :CameraOff, 'phlex-icons/lucide/camera_off'
|
|
284
286
|
autoload :Candy, 'phlex-icons/lucide/candy'
|
|
@@ -643,7 +645,7 @@ module PhlexIcons
|
|
|
643
645
|
autoload :FileXCorner, 'phlex-icons/lucide/file_x_corner'
|
|
644
646
|
autoload :Files, 'phlex-icons/lucide/files'
|
|
645
647
|
autoload :Film, 'phlex-icons/lucide/film'
|
|
646
|
-
autoload :
|
|
648
|
+
autoload :FingerprintPattern, 'phlex-icons/lucide/fingerprint_pattern'
|
|
647
649
|
autoload :FireExtinguisher, 'phlex-icons/lucide/fire_extinguisher'
|
|
648
650
|
autoload :Fish, 'phlex-icons/lucide/fish'
|
|
649
651
|
autoload :FishOff, 'phlex-icons/lucide/fish_off'
|
|
@@ -701,6 +703,7 @@ module PhlexIcons
|
|
|
701
703
|
autoload :Folders, 'phlex-icons/lucide/folders'
|
|
702
704
|
autoload :Footprints, 'phlex-icons/lucide/footprints'
|
|
703
705
|
autoload :Forklift, 'phlex-icons/lucide/forklift'
|
|
706
|
+
autoload :Form, 'phlex-icons/lucide/form'
|
|
704
707
|
autoload :Forward, 'phlex-icons/lucide/forward'
|
|
705
708
|
autoload :Frame, 'phlex-icons/lucide/frame'
|
|
706
709
|
autoload :Framer, 'phlex-icons/lucide/framer'
|
|
@@ -1627,6 +1630,8 @@ module PhlexIcons
|
|
|
1627
1630
|
autoload :WashingMachine, 'phlex-icons/lucide/washing_machine'
|
|
1628
1631
|
autoload :Watch, 'phlex-icons/lucide/watch'
|
|
1629
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'
|
|
1630
1635
|
autoload :WavesLadder, 'phlex-icons/lucide/waves_ladder'
|
|
1631
1636
|
autoload :Waypoints, 'phlex-icons/lucide/waypoints'
|
|
1632
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
|
|
@@ -326,6 +327,7 @@ files:
|
|
|
326
327
|
- lib/phlex-icons/lucide/calendar_sync.rb
|
|
327
328
|
- lib/phlex-icons/lucide/calendar_x.rb
|
|
328
329
|
- lib/phlex-icons/lucide/calendar_x_2.rb
|
|
330
|
+
- lib/phlex-icons/lucide/calendars.rb
|
|
329
331
|
- lib/phlex-icons/lucide/camera.rb
|
|
330
332
|
- lib/phlex-icons/lucide/camera_off.rb
|
|
331
333
|
- lib/phlex-icons/lucide/candy.rb
|
|
@@ -690,7 +692,7 @@ files:
|
|
|
690
692
|
- lib/phlex-icons/lucide/file_x_corner.rb
|
|
691
693
|
- lib/phlex-icons/lucide/files.rb
|
|
692
694
|
- lib/phlex-icons/lucide/film.rb
|
|
693
|
-
- lib/phlex-icons/lucide/
|
|
695
|
+
- lib/phlex-icons/lucide/fingerprint_pattern.rb
|
|
694
696
|
- lib/phlex-icons/lucide/fire_extinguisher.rb
|
|
695
697
|
- lib/phlex-icons/lucide/fish.rb
|
|
696
698
|
- lib/phlex-icons/lucide/fish_off.rb
|
|
@@ -748,6 +750,7 @@ files:
|
|
|
748
750
|
- lib/phlex-icons/lucide/folders.rb
|
|
749
751
|
- lib/phlex-icons/lucide/footprints.rb
|
|
750
752
|
- lib/phlex-icons/lucide/forklift.rb
|
|
753
|
+
- lib/phlex-icons/lucide/form.rb
|
|
751
754
|
- lib/phlex-icons/lucide/forward.rb
|
|
752
755
|
- lib/phlex-icons/lucide/frame.rb
|
|
753
756
|
- lib/phlex-icons/lucide/framer.rb
|
|
@@ -1674,6 +1677,8 @@ files:
|
|
|
1674
1677
|
- lib/phlex-icons/lucide/washing_machine.rb
|
|
1675
1678
|
- lib/phlex-icons/lucide/watch.rb
|
|
1676
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
|
|
1677
1682
|
- lib/phlex-icons/lucide/waves_ladder.rb
|
|
1678
1683
|
- lib/phlex-icons/lucide/waypoints.rb
|
|
1679
1684
|
- lib/phlex-icons/lucide/webcam.rb
|