phlex-icons-lucide 2.27.0 → 2.28.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/bottle_wine.rb +28 -0
- data/lib/phlex-icons/lucide/circle_arrow_left.rb +1 -1
- data/lib/phlex-icons/lucide/circle_arrow_right.rb +1 -1
- data/lib/phlex-icons/lucide/georgian_lari.rb +25 -0
- data/lib/phlex-icons/lucide/line_squiggle.rb +25 -0
- data/lib/phlex-icons/lucide/shopping_bag.rb +7 -2
- data/lib/phlex-icons/lucide/spool.rb +29 -0
- data/lib/phlex-icons/lucide/squircle_dashed.rb +29 -0
- data/lib/phlex-icons/lucide.rb +6 -1
- 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: 2f51ecfbae7b326a58fd618e9ed33c68b6e5c47723ce2c3bea692c66147a9f4f
|
4
|
+
data.tar.gz: 5adc2940bddc84deae3292fd78b3b1927cf599184b85696cc6dda5207044ead3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81d554f3307e66e52ab6ef70e63bc762229d6bfbdac71fe8378188d7fbbe3565b926abb6d5df755a00a5c521c7988eacf373dacbbce4eee7224ebb44e1728559
|
7
|
+
data.tar.gz: 55bc81c7184562e3bffd590b894f4b68d8d544fbb927a45983b557e633037eefb0eea7545d2caf9667719920fc5d5e135695b1bcc8e0cf147ef90d5aa184727a
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module PhlexIcons
|
5
|
+
module Lucide
|
6
|
+
class BottleWine < 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
|
+
'M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z'
|
21
|
+
)
|
22
|
+
s.path(d: 'M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4')
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class GeorgianLari < 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.5 21a7.5 7.5 0 1 1 7.35-9')
|
18
|
+
s.path(d: 'M13 12V3')
|
19
|
+
s.path(d: 'M4 21h16')
|
20
|
+
s.path(d: 'M9 12V3')
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class LineSquiggle < 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(
|
18
|
+
d:
|
19
|
+
'M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2'
|
20
|
+
)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -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 ShoppingBag < Base
|
@@ -14,11 +15,15 @@ module PhlexIcons
|
|
14
15
|
stroke_linecap: 'round',
|
15
16
|
stroke_linejoin: 'round'
|
16
17
|
) do |s|
|
17
|
-
s.path(d: 'M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z')
|
18
|
-
s.path(d: 'M3 6h18')
|
19
18
|
s.path(d: 'M16 10a4 4 0 0 1-8 0')
|
19
|
+
s.path(d: 'M3.103 6.034h17.794')
|
20
|
+
s.path(
|
21
|
+
d:
|
22
|
+
'M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z'
|
23
|
+
)
|
20
24
|
end
|
21
25
|
end
|
22
26
|
end
|
23
27
|
end
|
24
28
|
end
|
29
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class Spool < 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(
|
18
|
+
d:
|
19
|
+
'M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66'
|
20
|
+
)
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'm7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178'
|
24
|
+
)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PhlexIcons
|
4
|
+
module Lucide
|
5
|
+
class SquircleDashed < 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: 'M13.77 3.043a34 34 0 0 0-3.54 0')
|
18
|
+
s.path(d: 'M13.771 20.956a33 33 0 0 1-3.541.001')
|
19
|
+
s.path(d: 'M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44')
|
20
|
+
s.path(d: 'M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438')
|
21
|
+
s.path(d: 'M20.957 10.23a33 33 0 0 1 0 3.54')
|
22
|
+
s.path(d: 'M3.043 10.23a34 34 0 0 0 .001 3.541')
|
23
|
+
s.path(d: 'M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438')
|
24
|
+
s.path(d: 'M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
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.523.0'
|
6
6
|
VARIANTS = nil
|
7
7
|
|
8
8
|
extend Phlex::Kit
|
@@ -228,6 +228,7 @@ module PhlexIcons
|
|
228
228
|
autoload :Bot, 'phlex-icons/lucide/bot'
|
229
229
|
autoload :BotMessageSquare, 'phlex-icons/lucide/bot_message_square'
|
230
230
|
autoload :BotOff, 'phlex-icons/lucide/bot_off'
|
231
|
+
autoload :BottleWine, 'phlex-icons/lucide/bottle_wine'
|
231
232
|
autoload :BowArrow, 'phlex-icons/lucide/bow_arrow'
|
232
233
|
autoload :Box, 'phlex-icons/lucide/box'
|
233
234
|
autoload :Boxes, 'phlex-icons/lucide/boxes'
|
@@ -713,6 +714,7 @@ module PhlexIcons
|
|
713
714
|
autoload :Gauge, 'phlex-icons/lucide/gauge'
|
714
715
|
autoload :Gavel, 'phlex-icons/lucide/gavel'
|
715
716
|
autoload :Gem, 'phlex-icons/lucide/gem'
|
717
|
+
autoload :GeorgianLari, 'phlex-icons/lucide/georgian_lari'
|
716
718
|
autoload :Ghost, 'phlex-icons/lucide/ghost'
|
717
719
|
autoload :Gift, 'phlex-icons/lucide/gift'
|
718
720
|
autoload :GitBranch, 'phlex-icons/lucide/git_branch'
|
@@ -866,6 +868,7 @@ module PhlexIcons
|
|
866
868
|
autoload :Ligature, 'phlex-icons/lucide/ligature'
|
867
869
|
autoload :Lightbulb, 'phlex-icons/lucide/lightbulb'
|
868
870
|
autoload :LightbulbOff, 'phlex-icons/lucide/lightbulb_off'
|
871
|
+
autoload :LineSquiggle, 'phlex-icons/lucide/line_squiggle'
|
869
872
|
autoload :Link, 'phlex-icons/lucide/link'
|
870
873
|
autoload :Link2, 'phlex-icons/lucide/link_2'
|
871
874
|
autoload :Link2Off, 'phlex-icons/lucide/link_2_off'
|
@@ -1327,6 +1330,7 @@ module PhlexIcons
|
|
1327
1330
|
autoload :Spline, 'phlex-icons/lucide/spline'
|
1328
1331
|
autoload :SplinePointer, 'phlex-icons/lucide/spline_pointer'
|
1329
1332
|
autoload :Split, 'phlex-icons/lucide/split'
|
1333
|
+
autoload :Spool, 'phlex-icons/lucide/spool'
|
1330
1334
|
autoload :SprayCan, 'phlex-icons/lucide/spray_can'
|
1331
1335
|
autoload :Sprout, 'phlex-icons/lucide/sprout'
|
1332
1336
|
autoload :Square, 'phlex-icons/lucide/square'
|
@@ -1396,6 +1400,7 @@ module PhlexIcons
|
|
1396
1400
|
autoload :SquaresSubtract, 'phlex-icons/lucide/squares_subtract'
|
1397
1401
|
autoload :SquaresUnite, 'phlex-icons/lucide/squares_unite'
|
1398
1402
|
autoload :Squircle, 'phlex-icons/lucide/squircle'
|
1403
|
+
autoload :SquircleDashed, 'phlex-icons/lucide/squircle_dashed'
|
1399
1404
|
autoload :Squirrel, 'phlex-icons/lucide/squirrel'
|
1400
1405
|
autoload :Stamp, 'phlex-icons/lucide/stamp'
|
1401
1406
|
autoload :Star, 'phlex-icons/lucide/star'
|
data/lib/phlex-icons/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.28.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-06-
|
11
|
+
date: 2025-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -274,6 +274,7 @@ files:
|
|
274
274
|
- lib/phlex-icons/lucide/bot.rb
|
275
275
|
- lib/phlex-icons/lucide/bot_message_square.rb
|
276
276
|
- lib/phlex-icons/lucide/bot_off.rb
|
277
|
+
- lib/phlex-icons/lucide/bottle_wine.rb
|
277
278
|
- lib/phlex-icons/lucide/bow_arrow.rb
|
278
279
|
- lib/phlex-icons/lucide/box.rb
|
279
280
|
- lib/phlex-icons/lucide/boxes.rb
|
@@ -759,6 +760,7 @@ files:
|
|
759
760
|
- lib/phlex-icons/lucide/gauge.rb
|
760
761
|
- lib/phlex-icons/lucide/gavel.rb
|
761
762
|
- lib/phlex-icons/lucide/gem.rb
|
763
|
+
- lib/phlex-icons/lucide/georgian_lari.rb
|
762
764
|
- lib/phlex-icons/lucide/ghost.rb
|
763
765
|
- lib/phlex-icons/lucide/gift.rb
|
764
766
|
- lib/phlex-icons/lucide/git_branch.rb
|
@@ -912,6 +914,7 @@ files:
|
|
912
914
|
- lib/phlex-icons/lucide/ligature.rb
|
913
915
|
- lib/phlex-icons/lucide/lightbulb.rb
|
914
916
|
- lib/phlex-icons/lucide/lightbulb_off.rb
|
917
|
+
- lib/phlex-icons/lucide/line_squiggle.rb
|
915
918
|
- lib/phlex-icons/lucide/link.rb
|
916
919
|
- lib/phlex-icons/lucide/link_2.rb
|
917
920
|
- lib/phlex-icons/lucide/link_2_off.rb
|
@@ -1373,6 +1376,7 @@ files:
|
|
1373
1376
|
- lib/phlex-icons/lucide/spline.rb
|
1374
1377
|
- lib/phlex-icons/lucide/spline_pointer.rb
|
1375
1378
|
- lib/phlex-icons/lucide/split.rb
|
1379
|
+
- lib/phlex-icons/lucide/spool.rb
|
1376
1380
|
- lib/phlex-icons/lucide/spray_can.rb
|
1377
1381
|
- lib/phlex-icons/lucide/sprout.rb
|
1378
1382
|
- lib/phlex-icons/lucide/square.rb
|
@@ -1442,6 +1446,7 @@ files:
|
|
1442
1446
|
- lib/phlex-icons/lucide/squares_subtract.rb
|
1443
1447
|
- lib/phlex-icons/lucide/squares_unite.rb
|
1444
1448
|
- lib/phlex-icons/lucide/squircle.rb
|
1449
|
+
- lib/phlex-icons/lucide/squircle_dashed.rb
|
1445
1450
|
- lib/phlex-icons/lucide/squirrel.rb
|
1446
1451
|
- lib/phlex-icons/lucide/stamp.rb
|
1447
1452
|
- lib/phlex-icons/lucide/star.rb
|