phlex-icons 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: 22a3af6917af5b5a6d5589566e89ae6b632c932e25619be14d753979937d1236
|
|
4
|
+
data.tar.gz: e3c0e330e3a0cd110413a807cb3a53c46aba21b21f8f399840b66d3db3d7770e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70de377e43d07a2c1b0b32b8fd4e3ae7a33acd11ad8ad243ffa1ceb31c8a6049878251a217d1d51c898cf7ff46e46ead91f4277e597d2245e945b9a2dab93a6e
|
|
7
|
+
data.tar.gz: 424f5d02d2c00ee8aefacea0179a773706821ab844db2a0260ade4dad02a2f63115707db83d0d805c5e8b7015a7e1e06e2d0c9dae17fd8fad4a71d581fd6b0ca
|
|
@@ -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
|
|
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
|
|
@@ -13127,6 +13127,7 @@ files:
|
|
|
13127
13127
|
- lib/phlex-icons/lucide/book_open_check.rb
|
|
13128
13128
|
- lib/phlex-icons/lucide/book_open_text.rb
|
|
13129
13129
|
- lib/phlex-icons/lucide/book_plus.rb
|
|
13130
|
+
- lib/phlex-icons/lucide/book_search.rb
|
|
13130
13131
|
- lib/phlex-icons/lucide/book_text.rb
|
|
13131
13132
|
- lib/phlex-icons/lucide/book_type.rb
|
|
13132
13133
|
- lib/phlex-icons/lucide/book_up.rb
|
|
@@ -13195,6 +13196,7 @@ files:
|
|
|
13195
13196
|
- lib/phlex-icons/lucide/calendar_sync.rb
|
|
13196
13197
|
- lib/phlex-icons/lucide/calendar_x.rb
|
|
13197
13198
|
- lib/phlex-icons/lucide/calendar_x_2.rb
|
|
13199
|
+
- lib/phlex-icons/lucide/calendars.rb
|
|
13198
13200
|
- lib/phlex-icons/lucide/camera.rb
|
|
13199
13201
|
- lib/phlex-icons/lucide/camera_off.rb
|
|
13200
13202
|
- lib/phlex-icons/lucide/candy.rb
|
|
@@ -13559,7 +13561,7 @@ files:
|
|
|
13559
13561
|
- lib/phlex-icons/lucide/file_x_corner.rb
|
|
13560
13562
|
- lib/phlex-icons/lucide/files.rb
|
|
13561
13563
|
- lib/phlex-icons/lucide/film.rb
|
|
13562
|
-
- lib/phlex-icons/lucide/
|
|
13564
|
+
- lib/phlex-icons/lucide/fingerprint_pattern.rb
|
|
13563
13565
|
- lib/phlex-icons/lucide/fire_extinguisher.rb
|
|
13564
13566
|
- lib/phlex-icons/lucide/fish.rb
|
|
13565
13567
|
- lib/phlex-icons/lucide/fish_off.rb
|
|
@@ -13617,6 +13619,7 @@ files:
|
|
|
13617
13619
|
- lib/phlex-icons/lucide/folders.rb
|
|
13618
13620
|
- lib/phlex-icons/lucide/footprints.rb
|
|
13619
13621
|
- lib/phlex-icons/lucide/forklift.rb
|
|
13622
|
+
- lib/phlex-icons/lucide/form.rb
|
|
13620
13623
|
- lib/phlex-icons/lucide/forward.rb
|
|
13621
13624
|
- lib/phlex-icons/lucide/frame.rb
|
|
13622
13625
|
- lib/phlex-icons/lucide/framer.rb
|
|
@@ -14543,6 +14546,8 @@ files:
|
|
|
14543
14546
|
- lib/phlex-icons/lucide/washing_machine.rb
|
|
14544
14547
|
- lib/phlex-icons/lucide/watch.rb
|
|
14545
14548
|
- lib/phlex-icons/lucide/waves.rb
|
|
14549
|
+
- lib/phlex-icons/lucide/waves_arrow_down.rb
|
|
14550
|
+
- lib/phlex-icons/lucide/waves_arrow_up.rb
|
|
14546
14551
|
- lib/phlex-icons/lucide/waves_ladder.rb
|
|
14547
14552
|
- lib/phlex-icons/lucide/waypoints.rb
|
|
14548
14553
|
- lib/phlex-icons/lucide/webcam.rb
|