phlex-icons 2.13.0 → 2.14.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/clock_fading.rb +27 -0
- data/lib/phlex-icons/lucide/{filter.rb → funnel.rb} +9 -2
- data/lib/phlex-icons/lucide/funnel_plus.rb +29 -0
- data/lib/phlex-icons/lucide/funnel_x.rb +29 -0
- data/lib/phlex-icons/lucide/infinity.rb +1 -4
- data/lib/phlex-icons/lucide/newspaper.rb +4 -6
- data/lib/phlex-icons/lucide/{filter_x.rb → saudi_riyal.rb} +5 -4
- data/lib/phlex-icons/lucide/shrimp.rb +31 -0
- data/lib/phlex-icons/lucide.rb +7 -3
- data/lib/phlex-icons/version.rb +1 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5bac0f24bebf776437729504e63312097a842aa1521b916e48e1d364b7fe20ea
|
4
|
+
data.tar.gz: 1b8648df35d5d882c1d9aa0aa1da30605e52c1cba9f40628d9d20fe3c213fd6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5541332e6bb6f3a1bd71a94ba575d7665c945002be0437d47578661b09ebb730fa8c547793bc1f756a54db903a4a583b0f95e0d786a0fa2f60095763ac4c4a23
|
7
|
+
data.tar.gz: ac7ce612db4819c4a8709fc194922f0961904d7eb27f393e9bdabc5b575544de1cebbc70d71de840af3dc2e7dc32ef5acbc6cd10fcea42f182ed82a233b09e5b
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class ClockFading < 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 2a10 10 0 0 1 7.38 16.75')
|
18
|
+
s.path(d: 'M12 6v6l4 2')
|
19
|
+
s.path(d: 'M2.5 8.875a10 10 0 0 0-.5 3')
|
20
|
+
s.path(d: 'M2.83 16a10 10 0 0 0 2.43 3.4')
|
21
|
+
s.path(d: 'M4.636 5.235a10 10 0 0 1 .891-.857')
|
22
|
+
s.path(d: 'M8.644 21.42a10 10 0 0 0 7.631-.38')
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -1,8 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
3
4
|
module PhlexIcons
|
4
5
|
module Lucide
|
5
|
-
class
|
6
|
+
class Funnel < Base
|
6
7
|
def view_template
|
7
8
|
svg(
|
8
9
|
**attrs,
|
@@ -13,8 +14,14 @@ module PhlexIcons
|
|
13
14
|
stroke_width: '2',
|
14
15
|
stroke_linecap: 'round',
|
15
16
|
stroke_linejoin: 'round'
|
16
|
-
)
|
17
|
+
) do |s|
|
18
|
+
s.path(
|
19
|
+
d:
|
20
|
+
'M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z'
|
21
|
+
)
|
22
|
+
end
|
17
23
|
end
|
18
24
|
end
|
19
25
|
end
|
20
26
|
end
|
27
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class FunnelPlus < 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
|
+
'M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348'
|
21
|
+
)
|
22
|
+
s.path(d: 'M16 6h6')
|
23
|
+
s.path(d: 'M19 3v6')
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class FunnelX < 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
|
+
'M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473'
|
21
|
+
)
|
22
|
+
s.path(d: 'm16.5 3.5 5 5')
|
23
|
+
s.path(d: 'm21.5 3.5-5 5')
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
# rubocop:enable Layout/LineLength
|
@@ -14,10 +14,7 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(
|
18
|
-
d:
|
19
|
-
'M12 12c-2-2.67-4-4-6-4a4 4 0 1 0 0 8c2 0 4-1.33 6-4Zm0 0c2 2.67 4 4 6 4a4 4 0 0 0 0-8c-2 0-4 1.33-6 4Z'
|
20
|
-
)
|
17
|
+
s.path(d: 'M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8')
|
21
18
|
end
|
22
19
|
end
|
23
20
|
end
|
@@ -1,6 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# rubocop:disable Layout/LineLength
|
4
3
|
module PhlexIcons
|
5
4
|
module Lucide
|
6
5
|
class Newspaper < Base
|
@@ -15,16 +14,15 @@ module PhlexIcons
|
|
15
14
|
stroke_linecap: 'round',
|
16
15
|
stroke_linejoin: 'round'
|
17
16
|
) do |s|
|
17
|
+
s.path(d: 'M15 18h-5')
|
18
|
+
s.path(d: 'M18 14h-8')
|
18
19
|
s.path(
|
19
20
|
d:
|
20
|
-
'M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-
|
21
|
+
'M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2'
|
21
22
|
)
|
22
|
-
s.
|
23
|
-
s.path(d: 'M15 18h-5')
|
24
|
-
s.path(d: 'M10 6h8v4h-8V6Z')
|
23
|
+
s.rect(x: '10', y: '6', width: '8', height: '4', rx: '1')
|
25
24
|
end
|
26
25
|
end
|
27
26
|
end
|
28
27
|
end
|
29
28
|
end
|
30
|
-
# rubocop:enable Layout/LineLength
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module PhlexIcons
|
4
4
|
module Lucide
|
5
|
-
class
|
5
|
+
class SaudiRiyal < Base
|
6
6
|
def view_template
|
7
7
|
svg(
|
8
8
|
**attrs,
|
@@ -14,9 +14,10 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: '
|
18
|
-
s.path(d: '
|
19
|
-
s.path(d: '
|
17
|
+
s.path(d: 'm20 19.5-5.5 1.2')
|
18
|
+
s.path(d: 'M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2')
|
19
|
+
s.path(d: 'm2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2')
|
20
|
+
s.path(d: 'M20 10 4 13.5')
|
20
21
|
end
|
21
22
|
end
|
22
23
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class Shrimp < 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: 'M11 12h.01')
|
19
|
+
s.path(d: 'M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1')
|
20
|
+
s.path(
|
21
|
+
d:
|
22
|
+
'M14 2a3.276 3.276 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8'
|
23
|
+
)
|
24
|
+
s.path(d: 'M14 8a8.5 8.5 0 0 1 0 8')
|
25
|
+
s.path(d: 'M16 16c2 0 4.5-4 4-6')
|
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.483.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -410,6 +410,7 @@ module PhlexIcons
|
|
410
410
|
autoload :ClockAlert, 'phlex-icons/lucide/clock_alert'
|
411
411
|
autoload :ClockArrowDown, 'phlex-icons/lucide/clock_arrow_down'
|
412
412
|
autoload :ClockArrowUp, 'phlex-icons/lucide/clock_arrow_up'
|
413
|
+
autoload :ClockFading, 'phlex-icons/lucide/clock_fading'
|
413
414
|
autoload :Cloud, 'phlex-icons/lucide/cloud'
|
414
415
|
autoload :CloudAlert, 'phlex-icons/lucide/cloud_alert'
|
415
416
|
autoload :CloudCog, 'phlex-icons/lucide/cloud_cog'
|
@@ -616,8 +617,6 @@ module PhlexIcons
|
|
616
617
|
autoload :FileX2, 'phlex-icons/lucide/file_x_2'
|
617
618
|
autoload :Files, 'phlex-icons/lucide/files'
|
618
619
|
autoload :Film, 'phlex-icons/lucide/film'
|
619
|
-
autoload :Filter, 'phlex-icons/lucide/filter'
|
620
|
-
autoload :FilterX, 'phlex-icons/lucide/filter_x'
|
621
620
|
autoload :Fingerprint, 'phlex-icons/lucide/fingerprint'
|
622
621
|
autoload :FireExtinguisher, 'phlex-icons/lucide/fire_extinguisher'
|
623
622
|
autoload :Fish, 'phlex-icons/lucide/fish'
|
@@ -682,6 +681,9 @@ module PhlexIcons
|
|
682
681
|
autoload :Frown, 'phlex-icons/lucide/frown'
|
683
682
|
autoload :Fuel, 'phlex-icons/lucide/fuel'
|
684
683
|
autoload :Fullscreen, 'phlex-icons/lucide/fullscreen'
|
684
|
+
autoload :Funnel, 'phlex-icons/lucide/funnel'
|
685
|
+
autoload :FunnelPlus, 'phlex-icons/lucide/funnel_plus'
|
686
|
+
autoload :FunnelX, 'phlex-icons/lucide/funnel_x'
|
685
687
|
autoload :GalleryHorizontal, 'phlex-icons/lucide/gallery_horizontal'
|
686
688
|
autoload :GalleryHorizontalEnd, 'phlex-icons/lucide/gallery_horizontal_end'
|
687
689
|
autoload :GalleryThumbnails, 'phlex-icons/lucide/gallery_thumbnails'
|
@@ -1185,6 +1187,7 @@ module PhlexIcons
|
|
1185
1187
|
autoload :Sandwich, 'phlex-icons/lucide/sandwich'
|
1186
1188
|
autoload :Satellite, 'phlex-icons/lucide/satellite'
|
1187
1189
|
autoload :SatelliteDish, 'phlex-icons/lucide/satellite_dish'
|
1190
|
+
autoload :SaudiRiyal, 'phlex-icons/lucide/saudi_riyal'
|
1188
1191
|
autoload :Save, 'phlex-icons/lucide/save'
|
1189
1192
|
autoload :SaveAll, 'phlex-icons/lucide/save_all'
|
1190
1193
|
autoload :SaveOff, 'phlex-icons/lucide/save_off'
|
@@ -1249,6 +1252,7 @@ module PhlexIcons
|
|
1249
1252
|
autoload :ShoppingCart, 'phlex-icons/lucide/shopping_cart'
|
1250
1253
|
autoload :Shovel, 'phlex-icons/lucide/shovel'
|
1251
1254
|
autoload :ShowerHead, 'phlex-icons/lucide/shower_head'
|
1255
|
+
autoload :Shrimp, 'phlex-icons/lucide/shrimp'
|
1252
1256
|
autoload :Shrink, 'phlex-icons/lucide/shrink'
|
1253
1257
|
autoload :Shrub, 'phlex-icons/lucide/shrub'
|
1254
1258
|
autoload :Shuffle, 'phlex-icons/lucide/shuffle'
|
data/lib/phlex-icons/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phlex-icons
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.14.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-03-
|
11
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -4297,6 +4297,7 @@ files:
|
|
4297
4297
|
- lib/phlex-icons/lucide/clock_alert.rb
|
4298
4298
|
- lib/phlex-icons/lucide/clock_arrow_down.rb
|
4299
4299
|
- lib/phlex-icons/lucide/clock_arrow_up.rb
|
4300
|
+
- lib/phlex-icons/lucide/clock_fading.rb
|
4300
4301
|
- lib/phlex-icons/lucide/cloud.rb
|
4301
4302
|
- lib/phlex-icons/lucide/cloud_alert.rb
|
4302
4303
|
- lib/phlex-icons/lucide/cloud_cog.rb
|
@@ -4503,8 +4504,6 @@ files:
|
|
4503
4504
|
- lib/phlex-icons/lucide/file_x_2.rb
|
4504
4505
|
- lib/phlex-icons/lucide/files.rb
|
4505
4506
|
- lib/phlex-icons/lucide/film.rb
|
4506
|
-
- lib/phlex-icons/lucide/filter.rb
|
4507
|
-
- lib/phlex-icons/lucide/filter_x.rb
|
4508
4507
|
- lib/phlex-icons/lucide/fingerprint.rb
|
4509
4508
|
- lib/phlex-icons/lucide/fire_extinguisher.rb
|
4510
4509
|
- lib/phlex-icons/lucide/fish.rb
|
@@ -4569,6 +4568,9 @@ files:
|
|
4569
4568
|
- lib/phlex-icons/lucide/frown.rb
|
4570
4569
|
- lib/phlex-icons/lucide/fuel.rb
|
4571
4570
|
- lib/phlex-icons/lucide/fullscreen.rb
|
4571
|
+
- lib/phlex-icons/lucide/funnel.rb
|
4572
|
+
- lib/phlex-icons/lucide/funnel_plus.rb
|
4573
|
+
- lib/phlex-icons/lucide/funnel_x.rb
|
4572
4574
|
- lib/phlex-icons/lucide/gallery_horizontal.rb
|
4573
4575
|
- lib/phlex-icons/lucide/gallery_horizontal_end.rb
|
4574
4576
|
- lib/phlex-icons/lucide/gallery_thumbnails.rb
|
@@ -5072,6 +5074,7 @@ files:
|
|
5072
5074
|
- lib/phlex-icons/lucide/sandwich.rb
|
5073
5075
|
- lib/phlex-icons/lucide/satellite.rb
|
5074
5076
|
- lib/phlex-icons/lucide/satellite_dish.rb
|
5077
|
+
- lib/phlex-icons/lucide/saudi_riyal.rb
|
5075
5078
|
- lib/phlex-icons/lucide/save.rb
|
5076
5079
|
- lib/phlex-icons/lucide/save_all.rb
|
5077
5080
|
- lib/phlex-icons/lucide/save_off.rb
|
@@ -5136,6 +5139,7 @@ files:
|
|
5136
5139
|
- lib/phlex-icons/lucide/shopping_cart.rb
|
5137
5140
|
- lib/phlex-icons/lucide/shovel.rb
|
5138
5141
|
- lib/phlex-icons/lucide/shower_head.rb
|
5142
|
+
- lib/phlex-icons/lucide/shrimp.rb
|
5139
5143
|
- lib/phlex-icons/lucide/shrink.rb
|
5140
5144
|
- lib/phlex-icons/lucide/shrub.rb
|
5141
5145
|
- lib/phlex-icons/lucide/shuffle.rb
|