phlex-icons 2.33.0 → 2.35.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/apple.rb +2 -2
- data/lib/phlex-icons/lucide/brick_wall_shield.rb +34 -0
- data/lib/phlex-icons/lucide/camera.rb +3 -1
- data/lib/phlex-icons/lucide/camera_off.rb +9 -4
- data/lib/phlex-icons/lucide/kayak.rb +30 -0
- data/lib/phlex-icons/lucide/mic_off.rb +4 -4
- data/lib/phlex-icons/lucide/rose.rb +31 -0
- data/lib/phlex-icons/lucide/store.rb +3 -5
- data/lib/phlex-icons/lucide/umbrella.rb +6 -3
- data/lib/phlex-icons/lucide/umbrella_off.rb +6 -3
- data/lib/phlex-icons/lucide.rb +4 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a7e68dbeec734d124141ff66e5b74c6a1bbb94121644fcaa6d8214713a31dab
|
4
|
+
data.tar.gz: ef7d597dd3eb801ad394fe0ac050b3578f6766daad0a9a28a1f10f58699655ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c501b5038e5476bdbeeceb20c6ba37f0cb4af1324440755c5037f7344f302adf6f1003a80a2a51b4729286e639b8059c339fcd87ca4e722b53a69ed3d9d16a95
|
7
|
+
data.tar.gz: c71e052c680ca113a2803985cf558919c15d782a91acc861250da818459617115d435b269cde0081c9241280a2c66c49468474c554a26097a49c0199fab5c6fe
|
@@ -15,11 +15,11 @@ module PhlexIcons
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
+
s.path(d: 'M12 6.528V3a1 1 0 0 1 1-1h0')
|
18
19
|
s.path(
|
19
20
|
d:
|
20
|
-
'
|
21
|
+
'M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21'
|
21
22
|
)
|
22
|
-
s.path(d: 'M10 2c1 .5 2 2 2 5')
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class BrickWallShield < 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 9v1.258')
|
19
|
+
s.path(d: 'M16 3v5.46')
|
20
|
+
s.path(d: 'M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75')
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z'
|
24
|
+
)
|
25
|
+
s.path(d: 'M3 15h7')
|
26
|
+
s.path(d: 'M3 9h12.142')
|
27
|
+
s.path(d: 'M8 15v6')
|
28
|
+
s.path(d: 'M8 3v6')
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
# rubocop:enable Layout/LineLength
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
3
4
|
module PhlexIcons
|
4
5
|
module Lucide
|
5
6
|
class Camera < Base
|
@@ -16,7 +17,7 @@ module PhlexIcons
|
|
16
17
|
) do |s|
|
17
18
|
s.path(
|
18
19
|
d:
|
19
|
-
'
|
20
|
+
'M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z'
|
20
21
|
)
|
21
22
|
s.circle(cx: '12', cy: '13', r: '3')
|
22
23
|
end
|
@@ -24,3 +25,4 @@ module PhlexIcons
|
|
24
25
|
end
|
25
26
|
end
|
26
27
|
end
|
28
|
+
# rubocop:enable Layout/LineLength
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# rubocop:disable Layout/LineLength
|
3
4
|
module PhlexIcons
|
4
5
|
module Lucide
|
5
6
|
class CameraOff < Base
|
@@ -14,12 +15,16 @@ module PhlexIcons
|
|
14
15
|
stroke_linecap: 'round',
|
15
16
|
stroke_linejoin: 'round'
|
16
17
|
) do |s|
|
17
|
-
s.
|
18
|
-
s.path(d: '
|
19
|
-
s.path(d: '
|
20
|
-
s.path(
|
18
|
+
s.path(d: 'M14.564 14.558a3 3 0 1 1-4.122-4.121')
|
19
|
+
s.path(d: 'm2 2 20 20')
|
20
|
+
s.path(d: 'M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175')
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344'
|
24
|
+
)
|
21
25
|
end
|
22
26
|
end
|
23
27
|
end
|
24
28
|
end
|
25
29
|
end
|
30
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class Kayak < 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: 'M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z')
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61'
|
22
|
+
)
|
23
|
+
s.path(d: 'm6.707 6.707 10.586 10.586')
|
24
|
+
s.path(d: 'M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
# rubocop:enable Layout/LineLength
|
@@ -14,12 +14,12 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.
|
18
|
-
s.path(d: 'M18.89 13.23A7.12 7.12 0 0 0 19 12v-2')
|
19
|
-
s.path(d: 'M5 10v2a7 7 0 0 0 12 5')
|
17
|
+
s.path(d: 'M12 19v3')
|
20
18
|
s.path(d: 'M15 9.34V5a3 3 0 0 0-5.68-1.33')
|
19
|
+
s.path(d: 'M16.95 16.95A7 7 0 0 1 5 12v-2')
|
20
|
+
s.path(d: 'M18.89 13.23A7 7 0 0 0 19 12v-2')
|
21
|
+
s.path(d: 'm2 2 20 20')
|
21
22
|
s.path(d: 'M9 9v3a3 3 0 0 0 5.12 2.12')
|
22
|
-
s.line(x1: '12', x2: '12', y1: '19', y2: '22')
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class Rose < 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: 'M17 10h-1a4 4 0 1 1 4-4v.534')
|
18
|
+
s.path(
|
19
|
+
d: 'M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31'
|
20
|
+
)
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2'
|
24
|
+
)
|
25
|
+
s.path(d: 'M9.77 12C4 15 2 22 2 22')
|
26
|
+
s.circle(cx: '17', cy: '8', r: '2')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -15,14 +15,12 @@ module PhlexIcons
|
|
15
15
|
stroke_linecap: 'round',
|
16
16
|
stroke_linejoin: 'round'
|
17
17
|
) do |s|
|
18
|
-
s.path(d: '
|
19
|
-
s.path(d: 'M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8')
|
20
|
-
s.path(d: 'M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4')
|
21
|
-
s.path(d: 'M2 7h20')
|
18
|
+
s.path(d: 'M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5')
|
22
19
|
s.path(
|
23
20
|
d:
|
24
|
-
'
|
21
|
+
'M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244'
|
25
22
|
)
|
23
|
+
s.path(d: 'M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05')
|
26
24
|
end
|
27
25
|
end
|
28
26
|
end
|
@@ -14,9 +14,12 @@ module PhlexIcons
|
|
14
14
|
stroke_linecap: 'round',
|
15
15
|
stroke_linejoin: 'round'
|
16
16
|
) do |s|
|
17
|
-
s.path(d: '
|
18
|
-
s.path(d: 'M12
|
19
|
-
s.path(
|
17
|
+
s.path(d: 'M12 13v7a2 2 0 0 0 4 0')
|
18
|
+
s.path(d: 'M12 2v2')
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z'
|
22
|
+
)
|
20
23
|
end
|
21
24
|
end
|
22
25
|
end
|
@@ -14,10 +14,13 @@ 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.path(
|
17
|
+
s.path(d: 'M12 13v7a2 2 0 0 0 4 0')
|
18
|
+
s.path(d: 'M12 2v2')
|
19
|
+
s.path(
|
20
|
+
d: 'M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51'
|
21
|
+
)
|
20
22
|
s.path(d: 'm2 2 20 20')
|
23
|
+
s.path(d: 'M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10')
|
21
24
|
end
|
22
25
|
end
|
23
26
|
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.540.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -240,6 +240,7 @@ module PhlexIcons
|
|
240
240
|
autoload :BrainCog, 'phlex-icons/lucide/brain_cog'
|
241
241
|
autoload :BrickWall, 'phlex-icons/lucide/brick_wall'
|
242
242
|
autoload :BrickWallFire, 'phlex-icons/lucide/brick_wall_fire'
|
243
|
+
autoload :BrickWallShield, 'phlex-icons/lucide/brick_wall_shield'
|
243
244
|
autoload :Briefcase, 'phlex-icons/lucide/briefcase'
|
244
245
|
autoload :BriefcaseBusiness, 'phlex-icons/lucide/briefcase_business'
|
245
246
|
autoload :BriefcaseConveyorBelt, 'phlex-icons/lucide/briefcase_conveyor_belt'
|
@@ -836,6 +837,7 @@ module PhlexIcons
|
|
836
837
|
autoload :JapaneseYen, 'phlex-icons/lucide/japanese_yen'
|
837
838
|
autoload :Joystick, 'phlex-icons/lucide/joystick'
|
838
839
|
autoload :Kanban, 'phlex-icons/lucide/kanban'
|
840
|
+
autoload :Kayak, 'phlex-icons/lucide/kayak'
|
839
841
|
autoload :Key, 'phlex-icons/lucide/key'
|
840
842
|
autoload :KeyRound, 'phlex-icons/lucide/key_round'
|
841
843
|
autoload :KeySquare, 'phlex-icons/lucide/key_square'
|
@@ -1209,6 +1211,7 @@ module PhlexIcons
|
|
1209
1211
|
autoload :Rocket, 'phlex-icons/lucide/rocket'
|
1210
1212
|
autoload :RockingChair, 'phlex-icons/lucide/rocking_chair'
|
1211
1213
|
autoload :RollerCoaster, 'phlex-icons/lucide/roller_coaster'
|
1214
|
+
autoload :Rose, 'phlex-icons/lucide/rose'
|
1212
1215
|
autoload :Rotate3d, 'phlex-icons/lucide/rotate_3d'
|
1213
1216
|
autoload :RotateCcw, 'phlex-icons/lucide/rotate_ccw'
|
1214
1217
|
autoload :RotateCcwKey, 'phlex-icons/lucide/rotate_ccw_key'
|
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.35.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-08-
|
11
|
+
date: 2025-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -4157,6 +4157,7 @@ files:
|
|
4157
4157
|
- lib/phlex-icons/lucide/brain_cog.rb
|
4158
4158
|
- lib/phlex-icons/lucide/brick_wall.rb
|
4159
4159
|
- lib/phlex-icons/lucide/brick_wall_fire.rb
|
4160
|
+
- lib/phlex-icons/lucide/brick_wall_shield.rb
|
4160
4161
|
- lib/phlex-icons/lucide/briefcase.rb
|
4161
4162
|
- lib/phlex-icons/lucide/briefcase_business.rb
|
4162
4163
|
- lib/phlex-icons/lucide/briefcase_conveyor_belt.rb
|
@@ -4753,6 +4754,7 @@ files:
|
|
4753
4754
|
- lib/phlex-icons/lucide/japanese_yen.rb
|
4754
4755
|
- lib/phlex-icons/lucide/joystick.rb
|
4755
4756
|
- lib/phlex-icons/lucide/kanban.rb
|
4757
|
+
- lib/phlex-icons/lucide/kayak.rb
|
4756
4758
|
- lib/phlex-icons/lucide/key.rb
|
4757
4759
|
- lib/phlex-icons/lucide/key_round.rb
|
4758
4760
|
- lib/phlex-icons/lucide/key_square.rb
|
@@ -5126,6 +5128,7 @@ files:
|
|
5126
5128
|
- lib/phlex-icons/lucide/rocket.rb
|
5127
5129
|
- lib/phlex-icons/lucide/rocking_chair.rb
|
5128
5130
|
- lib/phlex-icons/lucide/roller_coaster.rb
|
5131
|
+
- lib/phlex-icons/lucide/rose.rb
|
5129
5132
|
- lib/phlex-icons/lucide/rotate_3d.rb
|
5130
5133
|
- lib/phlex-icons/lucide/rotate_ccw.rb
|
5131
5134
|
- lib/phlex-icons/lucide/rotate_ccw_key.rb
|