phlex-icons 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: 72f891e335cde53e3ca8ba4f64618920b2027a6b13bcfc6c18809ae78f6784c5
|
4
|
+
data.tar.gz: 13e23c28e1974a1e2c5eff8c77cd242ec6ec253dc2e1e9b9fbd8688bdd550dc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab26f23765a244135b9646fd9107427d54f816d9ca4c509d5110625ed86afd345b64ef116f1297e7ee94600727c58514d2523e33aad6a1801e7bf84976d642d
|
7
|
+
data.tar.gz: 3938525dd55c67e6f08561f5b86e951518f0c024e52bc8e25e3672addca39e9f23e5642676839ccf6abf4417c01251ee75472321570cc77f6656728d0368684f
|
@@ -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
|
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
|
@@ -4145,6 +4145,7 @@ files:
|
|
4145
4145
|
- lib/phlex-icons/lucide/bot.rb
|
4146
4146
|
- lib/phlex-icons/lucide/bot_message_square.rb
|
4147
4147
|
- lib/phlex-icons/lucide/bot_off.rb
|
4148
|
+
- lib/phlex-icons/lucide/bottle_wine.rb
|
4148
4149
|
- lib/phlex-icons/lucide/bow_arrow.rb
|
4149
4150
|
- lib/phlex-icons/lucide/box.rb
|
4150
4151
|
- lib/phlex-icons/lucide/boxes.rb
|
@@ -4630,6 +4631,7 @@ files:
|
|
4630
4631
|
- lib/phlex-icons/lucide/gauge.rb
|
4631
4632
|
- lib/phlex-icons/lucide/gavel.rb
|
4632
4633
|
- lib/phlex-icons/lucide/gem.rb
|
4634
|
+
- lib/phlex-icons/lucide/georgian_lari.rb
|
4633
4635
|
- lib/phlex-icons/lucide/ghost.rb
|
4634
4636
|
- lib/phlex-icons/lucide/gift.rb
|
4635
4637
|
- lib/phlex-icons/lucide/git_branch.rb
|
@@ -4783,6 +4785,7 @@ files:
|
|
4783
4785
|
- lib/phlex-icons/lucide/ligature.rb
|
4784
4786
|
- lib/phlex-icons/lucide/lightbulb.rb
|
4785
4787
|
- lib/phlex-icons/lucide/lightbulb_off.rb
|
4788
|
+
- lib/phlex-icons/lucide/line_squiggle.rb
|
4786
4789
|
- lib/phlex-icons/lucide/link.rb
|
4787
4790
|
- lib/phlex-icons/lucide/link_2.rb
|
4788
4791
|
- lib/phlex-icons/lucide/link_2_off.rb
|
@@ -5244,6 +5247,7 @@ files:
|
|
5244
5247
|
- lib/phlex-icons/lucide/spline.rb
|
5245
5248
|
- lib/phlex-icons/lucide/spline_pointer.rb
|
5246
5249
|
- lib/phlex-icons/lucide/split.rb
|
5250
|
+
- lib/phlex-icons/lucide/spool.rb
|
5247
5251
|
- lib/phlex-icons/lucide/spray_can.rb
|
5248
5252
|
- lib/phlex-icons/lucide/sprout.rb
|
5249
5253
|
- lib/phlex-icons/lucide/square.rb
|
@@ -5313,6 +5317,7 @@ files:
|
|
5313
5317
|
- lib/phlex-icons/lucide/squares_subtract.rb
|
5314
5318
|
- lib/phlex-icons/lucide/squares_unite.rb
|
5315
5319
|
- lib/phlex-icons/lucide/squircle.rb
|
5320
|
+
- lib/phlex-icons/lucide/squircle_dashed.rb
|
5316
5321
|
- lib/phlex-icons/lucide/squirrel.rb
|
5317
5322
|
- lib/phlex-icons/lucide/stamp.rb
|
5318
5323
|
- lib/phlex-icons/lucide/star.rb
|