phlex-icons-lucide 2.10.0 → 2.11.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 742cf58769965b8064521e9e91ccef3b42d45e26d7abb9f61e5d685b798cab2b
|
4
|
+
data.tar.gz: 1e6ae6360ab3545f3a64e3045f1cfe9bb0b36436e587adfa633b37724cbe2594
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f8b9d911f1dc08c033d95f3721db7d84e531be2d5fa186557652f72a64a0047dddb08edd52c27f90ba7a6049dffbb8cc3c64380f8841c820026f388faaccb4e
|
7
|
+
data.tar.gz: 45f5ba7de4e952ca1f419d20b6beab46e85401c02ddc9febeed6da3e740c080ac1f9cf6d7b544d46b3a7de35b1c5f365285351ba067f4ee4b6d8958a6ef30e71
|
@@ -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
|
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.476.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'
|
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.11.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
|