phlex-icons-lucide 2.10.0 → 2.12.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/beef.rb +3 -5
- data/lib/phlex-icons/lucide/circle_slash_2.rb +1 -1
- data/lib/phlex-icons/lucide/shield_user.rb +29 -0
- data/lib/phlex-icons/lucide/square_round_corner.rb +23 -0
- data/lib/phlex-icons/lucide.rb +3 -1
- data/lib/phlex-icons/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05a10c0cff1a0fdcd3a4746d5e3a6256a9761f322b3305cc3b8355bde0e54c8d
|
4
|
+
data.tar.gz: 904466e9105ad831310f60e81b26e2ade4ff0574aabb422d5781e584eff78c45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3812b7d52a17b8520a3a0f32aac08cdb90338d9c5013b49f3f272f4dba5b8c2554aa3ba346fbba31f41c370f16ba5570c4149d8c2b3a467dcae9a141c08ed945
|
7
|
+
data.tar.gz: '08acd79fbbea1e748835e1bfca75a4416b0346a244bb3fab88db014f9a4d40927d78efcc1d383887e8f29434f87b8569387c71729cae01af148558db3088d0a9'
|
@@ -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 Beef < Base
|
@@ -15,18 +14,17 @@ module PhlexIcons
|
|
15
14
|
stroke_linecap: 'round',
|
16
15
|
stroke_linejoin: 'round'
|
17
16
|
) do |s|
|
18
|
-
s.circle(cx: '12.5', cy: '8.5', r: '2.5')
|
19
17
|
s.path(
|
20
18
|
d:
|
21
|
-
'
|
19
|
+
'M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3'
|
22
20
|
)
|
23
21
|
s.path(
|
24
22
|
d:
|
25
|
-
'm18.5 6 2.19 4.5a6.48 6.48 0 0 1
|
23
|
+
'm18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5'
|
26
24
|
)
|
25
|
+
s.circle(cx: '12.5', cy: '8.5', r: '2.5')
|
27
26
|
end
|
28
27
|
end
|
29
28
|
end
|
30
29
|
end
|
31
30
|
end
|
32
|
-
# 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 ShieldUser < 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
|
+
'M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'
|
21
|
+
)
|
22
|
+
s.path(d: 'M6.376 18.91a6 6 0 0 1 11.249.003')
|
23
|
+
s.circle(cx: '12', cy: '11', r: '4')
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class SquareRoundCorner < 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: 'M21 11a8 8 0 0 0-8-8')
|
18
|
+
s.path(d: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4')
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
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.477.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -1239,6 +1239,7 @@ module PhlexIcons
|
|
1239
1239
|
autoload :ShieldOff, 'phlex-icons/lucide/shield_off'
|
1240
1240
|
autoload :ShieldPlus, 'phlex-icons/lucide/shield_plus'
|
1241
1241
|
autoload :ShieldQuestion, 'phlex-icons/lucide/shield_question'
|
1242
|
+
autoload :ShieldUser, 'phlex-icons/lucide/shield_user'
|
1242
1243
|
autoload :ShieldX, 'phlex-icons/lucide/shield_x'
|
1243
1244
|
autoload :Ship, 'phlex-icons/lucide/ship'
|
1244
1245
|
autoload :ShipWheel, 'phlex-icons/lucide/ship_wheel'
|
@@ -1339,6 +1340,7 @@ module PhlexIcons
|
|
1339
1340
|
autoload :SquarePlus, 'phlex-icons/lucide/square_plus'
|
1340
1341
|
autoload :SquarePower, 'phlex-icons/lucide/square_power'
|
1341
1342
|
autoload :SquareRadical, 'phlex-icons/lucide/square_radical'
|
1343
|
+
autoload :SquareRoundCorner, 'phlex-icons/lucide/square_round_corner'
|
1342
1344
|
autoload :SquareScissors, 'phlex-icons/lucide/square_scissors'
|
1343
1345
|
autoload :SquareSigma, 'phlex-icons/lucide/square_sigma'
|
1344
1346
|
autoload :SquareSlash, 'phlex-icons/lucide/square_slash'
|
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.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ali Hamdi Ali Fadel
|
@@ -1283,6 +1283,7 @@ files:
|
|
1283
1283
|
- lib/phlex-icons/lucide/shield_off.rb
|
1284
1284
|
- lib/phlex-icons/lucide/shield_plus.rb
|
1285
1285
|
- lib/phlex-icons/lucide/shield_question.rb
|
1286
|
+
- lib/phlex-icons/lucide/shield_user.rb
|
1286
1287
|
- lib/phlex-icons/lucide/shield_x.rb
|
1287
1288
|
- lib/phlex-icons/lucide/ship.rb
|
1288
1289
|
- lib/phlex-icons/lucide/ship_wheel.rb
|
@@ -1383,6 +1384,7 @@ files:
|
|
1383
1384
|
- lib/phlex-icons/lucide/square_plus.rb
|
1384
1385
|
- lib/phlex-icons/lucide/square_power.rb
|
1385
1386
|
- lib/phlex-icons/lucide/square_radical.rb
|
1387
|
+
- lib/phlex-icons/lucide/square_round_corner.rb
|
1386
1388
|
- lib/phlex-icons/lucide/square_scissors.rb
|
1387
1389
|
- lib/phlex-icons/lucide/square_sigma.rb
|
1388
1390
|
- lib/phlex-icons/lucide/square_slash.rb
|