phlex-icons 2.19.0 → 2.21.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/.rubocop.yml +5 -1
- data/README.md +44 -0
- data/lib/phlex-icons/bootstrap/anthropic.rb +24 -0
- data/lib/phlex-icons/bootstrap/apple_music.rb +24 -0
- data/lib/phlex-icons/bootstrap/battery_low.rb +24 -0
- data/lib/phlex-icons/bootstrap/beaker.rb +27 -0
- data/lib/phlex-icons/bootstrap/beaker_fill.rb +23 -0
- data/lib/phlex-icons/bootstrap/bluesky.rb +23 -0
- data/lib/phlex-icons/bootstrap/calendar3_event_fill.rb +1 -2
- data/lib/phlex-icons/bootstrap/calendar3_range_fill.rb +1 -2
- data/lib/phlex-icons/bootstrap/calendar3_week_fill.rb +1 -2
- data/lib/phlex-icons/bootstrap/claude.rb +23 -0
- data/lib/phlex-icons/bootstrap/css.rb +24 -0
- data/lib/phlex-icons/bootstrap/flask.rb +23 -0
- data/lib/phlex-icons/bootstrap/flask_fill.rb +23 -0
- data/lib/phlex-icons/bootstrap/flask_florence.rb +23 -0
- data/lib/phlex-icons/bootstrap/flask_florence_fill.rb +23 -0
- data/lib/phlex-icons/bootstrap/fork_knife.rb +23 -0
- data/lib/phlex-icons/bootstrap/globe_americas_fill.rb +24 -0
- data/lib/phlex-icons/bootstrap/globe_asia_australia_fill.rb +24 -0
- data/lib/phlex-icons/bootstrap/globe_central_south_asia_fill.rb +24 -0
- data/lib/phlex-icons/bootstrap/globe_europe_africa_fill.rb +24 -0
- data/lib/phlex-icons/bootstrap/javascript.rb +24 -0
- data/lib/phlex-icons/bootstrap/leaf.rb +23 -0
- data/lib/phlex-icons/bootstrap/leaf_fill.rb +23 -0
- data/lib/phlex-icons/bootstrap/lock.rb +2 -1
- data/lib/phlex-icons/bootstrap/lock_fill.rb +2 -1
- data/lib/phlex-icons/bootstrap/measuring_cup.rb +23 -0
- data/lib/phlex-icons/bootstrap/measuring_cup_fill.rb +23 -0
- data/lib/phlex-icons/bootstrap/meta.rb +1 -1
- data/lib/phlex-icons/bootstrap/openai.rb +23 -0
- data/lib/phlex-icons/bootstrap/perplexity.rb +24 -0
- data/lib/phlex-icons/bootstrap/tux.rb +28 -0
- data/lib/phlex-icons/bootstrap/typescript.rb +24 -0
- data/lib/phlex-icons/bootstrap/unlock.rb +2 -1
- data/lib/phlex-icons/bootstrap/unlock2.rb +24 -0
- data/lib/phlex-icons/bootstrap/unlock2_fill.rb +24 -0
- data/lib/phlex-icons/bootstrap/unlock_fill.rb +2 -1
- data/lib/phlex-icons/bootstrap.rb +29 -1
- data/lib/phlex-icons/configuration.rb +24 -1
- data/lib/phlex-icons/icon.rb +31 -0
- data/lib/phlex-icons/lucide/air_vent.rb +2 -2
- data/lib/phlex-icons/lucide/axe.rb +7 -2
- data/lib/phlex-icons/lucide/bell_electric.rb +4 -4
- data/lib/phlex-icons/lucide/brackets.rb +2 -2
- data/lib/phlex-icons/lucide/brush_cleaning.rb +30 -0
- data/lib/phlex-icons/lucide/check_line.rb +24 -0
- data/lib/phlex-icons/lucide/clock_plus.rb +25 -0
- data/lib/phlex-icons/lucide/dumbbell.rb +5 -5
- data/lib/phlex-icons/lucide/expand.rb +4 -4
- data/lib/phlex-icons/lucide/gpu.rb +26 -0
- data/lib/phlex-icons/lucide/guitar.rb +1 -2
- data/lib/phlex-icons/lucide/hamburger.rb +28 -0
- data/lib/phlex-icons/lucide/laptop.rb +2 -1
- data/lib/phlex-icons/lucide/locate_off.rb +7 -13
- data/lib/phlex-icons/lucide/mail.rb +2 -2
- data/lib/phlex-icons/lucide/menu.rb +3 -3
- data/lib/phlex-icons/lucide/package_2.rb +7 -2
- data/lib/phlex-icons/lucide/panda.rb +32 -0
- data/lib/phlex-icons/lucide/phone.rb +1 -1
- data/lib/phlex-icons/lucide/phone_call.rb +3 -3
- data/lib/phlex-icons/lucide/phone_forwarded.rb +3 -3
- data/lib/phlex-icons/lucide/phone_incoming.rb +3 -3
- data/lib/phlex-icons/lucide/phone_missed.rb +3 -3
- data/lib/phlex-icons/lucide/phone_off.rb +6 -2
- data/lib/phlex-icons/lucide/phone_outgoing.rb +3 -3
- data/lib/phlex-icons/lucide/search.rb +1 -1
- data/lib/phlex-icons/lucide/soap_dispenser_droplet.rb +33 -0
- data/lib/phlex-icons/lucide/touchpad_off.rb +4 -4
- data/lib/phlex-icons/lucide/users.rb +2 -2
- data/lib/phlex-icons/lucide.rb +8 -1
- data/lib/phlex-icons/name_parser.rb +117 -0
- data/lib/phlex-icons/railtie.rb +17 -0
- data/lib/phlex-icons/version.rb +1 -1
- data/lib/phlex-icons.rb +3 -0
- metadata +40 -2
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'configuration'
|
4
|
+
|
5
|
+
module PhlexIcons
|
6
|
+
class Railtie < ::Rails::Railtie
|
7
|
+
initializer 'phlex_icons.view_helpers' do
|
8
|
+
ActiveSupport.on_load(:action_view) do
|
9
|
+
helper_method_name = PhlexIcons.configuration.helper_method_name
|
10
|
+
|
11
|
+
define_method helper_method_name do |name, **options|
|
12
|
+
PhlexIcons::Icon.call(name, **options)&.html_safe
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/phlex-icons/version.rb
CHANGED
data/lib/phlex-icons.rb
CHANGED
@@ -18,6 +18,9 @@ require_relative 'phlex-icons/radix'
|
|
18
18
|
require_relative 'phlex-icons/remix'
|
19
19
|
require_relative 'phlex-icons/tabler'
|
20
20
|
|
21
|
+
require_relative 'phlex-icons/icon'
|
22
|
+
require_relative 'phlex-icons/railtie' if defined?(Rails)
|
23
|
+
|
21
24
|
module PhlexIcons
|
22
25
|
class << self
|
23
26
|
def configuration
|
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.21.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-
|
11
|
+
date: 2025-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -75,9 +75,11 @@ files:
|
|
75
75
|
- lib/phlex-icons/bootstrap/amd.rb
|
76
76
|
- lib/phlex-icons/bootstrap/android.rb
|
77
77
|
- lib/phlex-icons/bootstrap/android2.rb
|
78
|
+
- lib/phlex-icons/bootstrap/anthropic.rb
|
78
79
|
- lib/phlex-icons/bootstrap/app.rb
|
79
80
|
- lib/phlex-icons/bootstrap/app_indicator.rb
|
80
81
|
- lib/phlex-icons/bootstrap/apple.rb
|
82
|
+
- lib/phlex-icons/bootstrap/apple_music.rb
|
81
83
|
- lib/phlex-icons/bootstrap/archive.rb
|
82
84
|
- lib/phlex-icons/bootstrap/archive_fill.rb
|
83
85
|
- lib/phlex-icons/bootstrap/arrow_90deg_down.rb
|
@@ -232,6 +234,9 @@ files:
|
|
232
234
|
- lib/phlex-icons/bootstrap/battery_charging.rb
|
233
235
|
- lib/phlex-icons/bootstrap/battery_full.rb
|
234
236
|
- lib/phlex-icons/bootstrap/battery_half.rb
|
237
|
+
- lib/phlex-icons/bootstrap/battery_low.rb
|
238
|
+
- lib/phlex-icons/bootstrap/beaker.rb
|
239
|
+
- lib/phlex-icons/bootstrap/beaker_fill.rb
|
235
240
|
- lib/phlex-icons/bootstrap/behance.rb
|
236
241
|
- lib/phlex-icons/bootstrap/bell.rb
|
237
242
|
- lib/phlex-icons/bootstrap/bell_fill.rb
|
@@ -245,6 +250,7 @@ files:
|
|
245
250
|
- lib/phlex-icons/bootstrap/binoculars_fill.rb
|
246
251
|
- lib/phlex-icons/bootstrap/blockquote_left.rb
|
247
252
|
- lib/phlex-icons/bootstrap/blockquote_right.rb
|
253
|
+
- lib/phlex-icons/bootstrap/bluesky.rb
|
248
254
|
- lib/phlex-icons/bootstrap/bluetooth.rb
|
249
255
|
- lib/phlex-icons/bootstrap/body_text.rb
|
250
256
|
- lib/phlex-icons/bootstrap/book.rb
|
@@ -568,6 +574,7 @@ files:
|
|
568
574
|
- lib/phlex-icons/bootstrap/circle_fill.rb
|
569
575
|
- lib/phlex-icons/bootstrap/circle_half.rb
|
570
576
|
- lib/phlex-icons/bootstrap/circle_square.rb
|
577
|
+
- lib/phlex-icons/bootstrap/claude.rb
|
571
578
|
- lib/phlex-icons/bootstrap/clipboard.rb
|
572
579
|
- lib/phlex-icons/bootstrap/clipboard2.rb
|
573
580
|
- lib/phlex-icons/bootstrap/clipboard2_check.rb
|
@@ -681,6 +688,7 @@ files:
|
|
681
688
|
- lib/phlex-icons/bootstrap/crop.rb
|
682
689
|
- lib/phlex-icons/bootstrap/crosshair.rb
|
683
690
|
- lib/phlex-icons/bootstrap/crosshair2.rb
|
691
|
+
- lib/phlex-icons/bootstrap/css.rb
|
684
692
|
- lib/phlex-icons/bootstrap/cup.rb
|
685
693
|
- lib/phlex-icons/bootstrap/cup_fill.rb
|
686
694
|
- lib/phlex-icons/bootstrap/cup_hot.rb
|
@@ -1090,6 +1098,10 @@ files:
|
|
1090
1098
|
- lib/phlex-icons/bootstrap/five_square_fill.rb
|
1091
1099
|
- lib/phlex-icons/bootstrap/flag.rb
|
1092
1100
|
- lib/phlex-icons/bootstrap/flag_fill.rb
|
1101
|
+
- lib/phlex-icons/bootstrap/flask.rb
|
1102
|
+
- lib/phlex-icons/bootstrap/flask_fill.rb
|
1103
|
+
- lib/phlex-icons/bootstrap/flask_florence.rb
|
1104
|
+
- lib/phlex-icons/bootstrap/flask_florence_fill.rb
|
1093
1105
|
- lib/phlex-icons/bootstrap/floppy.rb
|
1094
1106
|
- lib/phlex-icons/bootstrap/floppy2.rb
|
1095
1107
|
- lib/phlex-icons/bootstrap/floppy2_fill.rb
|
@@ -1108,6 +1120,7 @@ files:
|
|
1108
1120
|
- lib/phlex-icons/bootstrap/folder_symlink_fill.rb
|
1109
1121
|
- lib/phlex-icons/bootstrap/folder_x.rb
|
1110
1122
|
- lib/phlex-icons/bootstrap/fonts.rb
|
1123
|
+
- lib/phlex-icons/bootstrap/fork_knife.rb
|
1111
1124
|
- lib/phlex-icons/bootstrap/forward.rb
|
1112
1125
|
- lib/phlex-icons/bootstrap/forward_fill.rb
|
1113
1126
|
- lib/phlex-icons/bootstrap/four_circle.rb
|
@@ -1145,9 +1158,13 @@ files:
|
|
1145
1158
|
- lib/phlex-icons/bootstrap/globe.rb
|
1146
1159
|
- lib/phlex-icons/bootstrap/globe2.rb
|
1147
1160
|
- lib/phlex-icons/bootstrap/globe_americas.rb
|
1161
|
+
- lib/phlex-icons/bootstrap/globe_americas_fill.rb
|
1148
1162
|
- lib/phlex-icons/bootstrap/globe_asia_australia.rb
|
1163
|
+
- lib/phlex-icons/bootstrap/globe_asia_australia_fill.rb
|
1149
1164
|
- lib/phlex-icons/bootstrap/globe_central_south_asia.rb
|
1165
|
+
- lib/phlex-icons/bootstrap/globe_central_south_asia_fill.rb
|
1150
1166
|
- lib/phlex-icons/bootstrap/globe_europe_africa.rb
|
1167
|
+
- lib/phlex-icons/bootstrap/globe_europe_africa_fill.rb
|
1151
1168
|
- lib/phlex-icons/bootstrap/google.rb
|
1152
1169
|
- lib/phlex-icons/bootstrap/google_play.rb
|
1153
1170
|
- lib/phlex-icons/bootstrap/gpu_card.rb
|
@@ -1271,6 +1288,7 @@ files:
|
|
1271
1288
|
- lib/phlex-icons/bootstrap/input_cursor_text.rb
|
1272
1289
|
- lib/phlex-icons/bootstrap/instagram.rb
|
1273
1290
|
- lib/phlex-icons/bootstrap/intersect.rb
|
1291
|
+
- lib/phlex-icons/bootstrap/javascript.rb
|
1274
1292
|
- lib/phlex-icons/bootstrap/journal.rb
|
1275
1293
|
- lib/phlex-icons/bootstrap/journal_album.rb
|
1276
1294
|
- lib/phlex-icons/bootstrap/journal_arrow_down.rb
|
@@ -1317,6 +1335,8 @@ files:
|
|
1317
1335
|
- lib/phlex-icons/bootstrap/layout_text_window_reverse.rb
|
1318
1336
|
- lib/phlex-icons/bootstrap/layout_three_columns.rb
|
1319
1337
|
- lib/phlex-icons/bootstrap/layout_wtf.rb
|
1338
|
+
- lib/phlex-icons/bootstrap/leaf.rb
|
1339
|
+
- lib/phlex-icons/bootstrap/leaf_fill.rb
|
1320
1340
|
- lib/phlex-icons/bootstrap/life_preserver.rb
|
1321
1341
|
- lib/phlex-icons/bootstrap/lightbulb.rb
|
1322
1342
|
- lib/phlex-icons/bootstrap/lightbulb_fill.rb
|
@@ -1359,6 +1379,8 @@ files:
|
|
1359
1379
|
- lib/phlex-icons/bootstrap/marker_tip.rb
|
1360
1380
|
- lib/phlex-icons/bootstrap/mask.rb
|
1361
1381
|
- lib/phlex-icons/bootstrap/mastodon.rb
|
1382
|
+
- lib/phlex-icons/bootstrap/measuring_cup.rb
|
1383
|
+
- lib/phlex-icons/bootstrap/measuring_cup_fill.rb
|
1362
1384
|
- lib/phlex-icons/bootstrap/medium.rb
|
1363
1385
|
- lib/phlex-icons/bootstrap/megaphone.rb
|
1364
1386
|
- lib/phlex-icons/bootstrap/megaphone_fill.rb
|
@@ -1427,6 +1449,7 @@ files:
|
|
1427
1449
|
- lib/phlex-icons/bootstrap/one_square.rb
|
1428
1450
|
- lib/phlex-icons/bootstrap/one_square_fill.rb
|
1429
1451
|
- lib/phlex-icons/bootstrap/one_two_three.rb
|
1452
|
+
- lib/phlex-icons/bootstrap/openai.rb
|
1430
1453
|
- lib/phlex-icons/bootstrap/opencollective.rb
|
1431
1454
|
- lib/phlex-icons/bootstrap/optical_audio.rb
|
1432
1455
|
- lib/phlex-icons/bootstrap/optical_audio_fill.rb
|
@@ -1483,6 +1506,7 @@ files:
|
|
1483
1506
|
- lib/phlex-icons/bootstrap/people.rb
|
1484
1507
|
- lib/phlex-icons/bootstrap/people_fill.rb
|
1485
1508
|
- lib/phlex-icons/bootstrap/percent.rb
|
1509
|
+
- lib/phlex-icons/bootstrap/perplexity.rb
|
1486
1510
|
- lib/phlex-icons/bootstrap/person.rb
|
1487
1511
|
- lib/phlex-icons/bootstrap/person_add.rb
|
1488
1512
|
- lib/phlex-icons/bootstrap/person_arms_up.rb
|
@@ -1982,6 +2006,7 @@ files:
|
|
1982
2006
|
- lib/phlex-icons/bootstrap/truck_front.rb
|
1983
2007
|
- lib/phlex-icons/bootstrap/truck_front_fill.rb
|
1984
2008
|
- lib/phlex-icons/bootstrap/tsunami.rb
|
2009
|
+
- lib/phlex-icons/bootstrap/tux.rb
|
1985
2010
|
- lib/phlex-icons/bootstrap/tv.rb
|
1986
2011
|
- lib/phlex-icons/bootstrap/tv_fill.rb
|
1987
2012
|
- lib/phlex-icons/bootstrap/twitch.rb
|
@@ -2002,6 +2027,7 @@ files:
|
|
2002
2027
|
- lib/phlex-icons/bootstrap/type_italic.rb
|
2003
2028
|
- lib/phlex-icons/bootstrap/type_strikethrough.rb
|
2004
2029
|
- lib/phlex-icons/bootstrap/type_underline.rb
|
2030
|
+
- lib/phlex-icons/bootstrap/typescript.rb
|
2005
2031
|
- lib/phlex-icons/bootstrap/ubuntu.rb
|
2006
2032
|
- lib/phlex-icons/bootstrap/ui_checks.rb
|
2007
2033
|
- lib/phlex-icons/bootstrap/ui_checks_grid.rb
|
@@ -2015,6 +2041,8 @@ files:
|
|
2015
2041
|
- lib/phlex-icons/bootstrap/universal_access.rb
|
2016
2042
|
- lib/phlex-icons/bootstrap/universal_access_circle.rb
|
2017
2043
|
- lib/phlex-icons/bootstrap/unlock.rb
|
2044
|
+
- lib/phlex-icons/bootstrap/unlock2.rb
|
2045
|
+
- lib/phlex-icons/bootstrap/unlock2_fill.rb
|
2018
2046
|
- lib/phlex-icons/bootstrap/unlock_fill.rb
|
2019
2047
|
- lib/phlex-icons/bootstrap/upc.rb
|
2020
2048
|
- lib/phlex-icons/bootstrap/upc_scan.rb
|
@@ -3896,6 +3924,7 @@ files:
|
|
3896
3924
|
- lib/phlex-icons/hero/x_mark.rb
|
3897
3925
|
- lib/phlex-icons/hero/x_mark_outline.rb
|
3898
3926
|
- lib/phlex-icons/hero/x_mark_solid.rb
|
3927
|
+
- lib/phlex-icons/icon.rb
|
3899
3928
|
- lib/phlex-icons/lucide.rb
|
3900
3929
|
- lib/phlex-icons/lucide/a_arrow_down.rb
|
3901
3930
|
- lib/phlex-icons/lucide/a_arrow_up.rb
|
@@ -4130,6 +4159,7 @@ files:
|
|
4130
4159
|
- lib/phlex-icons/lucide/briefcase_medical.rb
|
4131
4160
|
- lib/phlex-icons/lucide/bring_to_front.rb
|
4132
4161
|
- lib/phlex-icons/lucide/brush.rb
|
4162
|
+
- lib/phlex-icons/lucide/brush_cleaning.rb
|
4133
4163
|
- lib/phlex-icons/lucide/bubbles.rb
|
4134
4164
|
- lib/phlex-icons/lucide/bug.rb
|
4135
4165
|
- lib/phlex-icons/lucide/bug_off.rb
|
@@ -4210,6 +4240,7 @@ files:
|
|
4210
4240
|
- lib/phlex-icons/lucide/chart_spline.rb
|
4211
4241
|
- lib/phlex-icons/lucide/check.rb
|
4212
4242
|
- lib/phlex-icons/lucide/check_check.rb
|
4243
|
+
- lib/phlex-icons/lucide/check_line.rb
|
4213
4244
|
- lib/phlex-icons/lucide/chef_hat.rb
|
4214
4245
|
- lib/phlex-icons/lucide/cherry.rb
|
4215
4246
|
- lib/phlex-icons/lucide/chevron_down.rb
|
@@ -4305,6 +4336,7 @@ files:
|
|
4305
4336
|
- lib/phlex-icons/lucide/clock_arrow_down.rb
|
4306
4337
|
- lib/phlex-icons/lucide/clock_arrow_up.rb
|
4307
4338
|
- lib/phlex-icons/lucide/clock_fading.rb
|
4339
|
+
- lib/phlex-icons/lucide/clock_plus.rb
|
4308
4340
|
- lib/phlex-icons/lucide/cloud.rb
|
4309
4341
|
- lib/phlex-icons/lucide/cloud_alert.rb
|
4310
4342
|
- lib/phlex-icons/lucide/cloud_cog.rb
|
@@ -4616,6 +4648,7 @@ files:
|
|
4616
4648
|
- lib/phlex-icons/lucide/globe.rb
|
4617
4649
|
- lib/phlex-icons/lucide/globe_lock.rb
|
4618
4650
|
- lib/phlex-icons/lucide/goal.rb
|
4651
|
+
- lib/phlex-icons/lucide/gpu.rb
|
4619
4652
|
- lib/phlex-icons/lucide/grab.rb
|
4620
4653
|
- lib/phlex-icons/lucide/graduation_cap.rb
|
4621
4654
|
- lib/phlex-icons/lucide/grape.rb
|
@@ -4630,6 +4663,7 @@ files:
|
|
4630
4663
|
- lib/phlex-icons/lucide/group.rb
|
4631
4664
|
- lib/phlex-icons/lucide/guitar.rb
|
4632
4665
|
- lib/phlex-icons/lucide/ham.rb
|
4666
|
+
- lib/phlex-icons/lucide/hamburger.rb
|
4633
4667
|
- lib/phlex-icons/lucide/hammer.rb
|
4634
4668
|
- lib/phlex-icons/lucide/hand.rb
|
4635
4669
|
- lib/phlex-icons/lucide/hand_coins.rb
|
@@ -4935,6 +4969,7 @@ files:
|
|
4935
4969
|
- lib/phlex-icons/lucide/paintbrush.rb
|
4936
4970
|
- lib/phlex-icons/lucide/paintbrush_vertical.rb
|
4937
4971
|
- lib/phlex-icons/lucide/palette.rb
|
4972
|
+
- lib/phlex-icons/lucide/panda.rb
|
4938
4973
|
- lib/phlex-icons/lucide/panel_bottom.rb
|
4939
4974
|
- lib/phlex-icons/lucide/panel_bottom_close.rb
|
4940
4975
|
- lib/phlex-icons/lucide/panel_bottom_dashed.rb
|
@@ -5186,6 +5221,7 @@ files:
|
|
5186
5221
|
- lib/phlex-icons/lucide/smile_plus.rb
|
5187
5222
|
- lib/phlex-icons/lucide/snail.rb
|
5188
5223
|
- lib/phlex-icons/lucide/snowflake.rb
|
5224
|
+
- lib/phlex-icons/lucide/soap_dispenser_droplet.rb
|
5189
5225
|
- lib/phlex-icons/lucide/sofa.rb
|
5190
5226
|
- lib/phlex-icons/lucide/soup.rb
|
5191
5227
|
- lib/phlex-icons/lucide/space.rb
|
@@ -18208,6 +18244,7 @@ files:
|
|
18208
18244
|
- lib/phlex-icons/material/zoom_out_round.rb
|
18209
18245
|
- lib/phlex-icons/material/zoom_out_sharp.rb
|
18210
18246
|
- lib/phlex-icons/material/zoom_out_two_tone.rb
|
18247
|
+
- lib/phlex-icons/name_parser.rb
|
18211
18248
|
- lib/phlex-icons/radix.rb
|
18212
18249
|
- lib/phlex-icons/radix/accessibility.rb
|
18213
18250
|
- lib/phlex-icons/radix/activity_log.rb
|
@@ -18528,6 +18565,7 @@ files:
|
|
18528
18565
|
- lib/phlex-icons/radix/width.rb
|
18529
18566
|
- lib/phlex-icons/radix/zoom_in.rb
|
18530
18567
|
- lib/phlex-icons/radix/zoom_out.rb
|
18568
|
+
- lib/phlex-icons/railtie.rb
|
18531
18569
|
- lib/phlex-icons/remix.rb
|
18532
18570
|
- lib/phlex-icons/remix/a_b.rb
|
18533
18571
|
- lib/phlex-icons/remix/accessibility_fill.rb
|