phlex-icons-tabler 1.0.0 → 1.2.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.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/lib/phlex/icons/tabler/arrow_down_dashed.rb +30 -0
  3. data/lib/phlex/icons/tabler/arrow_left_dashed.rb +30 -0
  4. data/lib/phlex/icons/tabler/arrow_narrow_down_dashed.rb +30 -0
  5. data/lib/phlex/icons/tabler/arrow_narrow_left_dashed.rb +30 -0
  6. data/lib/phlex/icons/tabler/arrow_narrow_right_dashed.rb +30 -0
  7. data/lib/phlex/icons/tabler/arrow_narrow_up_dashed.rb +30 -0
  8. data/lib/phlex/icons/tabler/arrow_right_dashed.rb +30 -0
  9. data/lib/phlex/icons/tabler/arrow_up_dashed.rb +30 -0
  10. data/lib/phlex/icons/tabler/building_cog.rb +49 -0
  11. data/lib/phlex/icons/tabler/building_minus.rb +40 -0
  12. data/lib/phlex/icons/tabler/building_plus.rb +41 -0
  13. data/lib/phlex/icons/tabler/favicon.rb +14 -1
  14. data/lib/phlex/icons/tabler/ferry.rb +30 -0
  15. data/lib/phlex/icons/tabler/icons.rb +24 -1
  16. data/lib/phlex/icons/tabler/ironing_1.rb +13 -1
  17. data/lib/phlex/icons/tabler/ironing_2.rb +13 -1
  18. data/lib/phlex/icons/tabler/ironing_3.rb +13 -1
  19. data/lib/phlex/icons/tabler/ironing_steam.rb +19 -1
  20. data/lib/phlex/icons/tabler/joker.rb +36 -0
  21. data/lib/phlex/icons/tabler/math_x_floor_divide_y.rb +33 -0
  22. data/lib/phlex/icons/tabler/number_10.rb +29 -0
  23. data/lib/phlex/icons/tabler/number_11.rb +29 -0
  24. data/lib/phlex/icons/tabler/play_card_1.rb +46 -0
  25. data/lib/phlex/icons/tabler/play_card_10.rb +50 -0
  26. data/lib/phlex/icons/tabler/play_card_2.rb +49 -0
  27. data/lib/phlex/icons/tabler/play_card_3.rb +46 -0
  28. data/lib/phlex/icons/tabler/play_card_4.rb +47 -0
  29. data/lib/phlex/icons/tabler/play_card_5.rb +46 -0
  30. data/lib/phlex/icons/tabler/play_card_6.rb +49 -0
  31. data/lib/phlex/icons/tabler/play_card_7.rb +46 -0
  32. data/lib/phlex/icons/tabler/play_card_8.rb +53 -0
  33. data/lib/phlex/icons/tabler/play_card_9.rb +49 -0
  34. data/lib/phlex/icons/tabler/play_card_a.rb +47 -0
  35. data/lib/phlex/icons/tabler/play_card_j.rb +46 -0
  36. data/lib/phlex/icons/tabler/play_card_k.rb +48 -0
  37. data/lib/phlex/icons/tabler/play_card_q.rb +47 -0
  38. data/lib/phlex/icons/tabler/play_card_star.rb +49 -0
  39. data/lib/phlex/icons/tabler/sitemap.rb +25 -1
  40. data/lib/phlex/icons/tabler/x_power_y.rb +31 -0
  41. data/lib/phlex/icons/tabler.rb +34 -1
  42. data/lib/phlex/icons/version.rb +1 -1
  43. metadata +34 -2
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCardK < Base
8
+ def filled
9
+ svg(
10
+ **attrs,
11
+ xmlns: 'http://www.w3.org/2000/svg',
12
+ viewbox: '0 0 24 24',
13
+ fill: 'currentColor'
14
+ ) do |s|
15
+ s.path(
16
+ d:
17
+ 'M17 2a3 3 0 0 1 3 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-7.01 -10a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-1.585l2.293 2.292a1 1 0 0 0 1.32 .083l.094 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293a1 1 0 1 0 -1.414 -1.414l-2.293 2.291v-1.584a1 1 0 0 0 -.883 -.993zm-2.99 -4h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2'
18
+ )
19
+ end
20
+ end
21
+
22
+ def outline
23
+ svg(
24
+ **attrs,
25
+ xmlns: 'http://www.w3.org/2000/svg',
26
+ viewbox: '0 0 24 24',
27
+ fill: 'none',
28
+ stroke: 'currentColor',
29
+ stroke_width: '2',
30
+ stroke_linecap: 'round',
31
+ stroke_linejoin: 'round'
32
+ ) do |s|
33
+ s.path(
34
+ d:
35
+ 'M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2'
36
+ )
37
+ s.path(d: 'M8 6h.01')
38
+ s.path(d: 'M16 18h.01')
39
+ s.path(d: 'M10 9v6')
40
+ s.path(d: 'M14 9l-3 3l3 3')
41
+ s.path(d: 'M10 12h1')
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCardQ < Base
8
+ def filled
9
+ svg(
10
+ **attrs,
11
+ xmlns: 'http://www.w3.org/2000/svg',
12
+ viewbox: '0 0 24 24',
13
+ fill: 'currentColor'
14
+ ) do |s|
15
+ s.path(
16
+ d:
17
+ 'M17 2a3 3 0 0 1 3 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-5.01 -10a3 3 0 0 0 -3 3v2a3 3 0 0 0 4.293 2.708l.5 .5a1 1 0 0 0 1.414 -1.415l-.499 -.5c.187 -.392 .292 -.83 .292 -1.293v-2a3 3 0 0 0 -3 -3m0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -2 0v-2a1 1 0 0 1 1 -1m-4.99 -6h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2'
18
+ )
19
+ end
20
+ end
21
+
22
+ def outline
23
+ svg(
24
+ **attrs,
25
+ xmlns: 'http://www.w3.org/2000/svg',
26
+ viewbox: '0 0 24 24',
27
+ fill: 'none',
28
+ stroke: 'currentColor',
29
+ stroke_width: '2',
30
+ stroke_linecap: 'round',
31
+ stroke_linejoin: 'round'
32
+ ) do |s|
33
+ s.path(
34
+ d:
35
+ 'M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2'
36
+ )
37
+ s.path(d: 'M8 6h.01')
38
+ s.path(d: 'M16 18h.01')
39
+ s.path(d: 'M12 9a2 2 0 0 1 2 2v2a2 2 0 1 1 -4 0v-2a2 2 0 0 1 2 -2')
40
+ s.path(d: 'M13 14l1.5 1.5')
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
47
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCardStar < Base
8
+ def filled
9
+ svg(
10
+ **attrs,
11
+ xmlns: 'http://www.w3.org/2000/svg',
12
+ viewbox: '0 0 24 24',
13
+ fill: 'currentColor'
14
+ ) do |s|
15
+ s.path(
16
+ d:
17
+ 'M17 2a3 3 0 0 1 3 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-4.98 -9.5l-.115 .005c-.384 .04 -.724 .273 -.898 .623l-.51 1.027l-1.138 .166c-.423 .059 -.78 .357 -.914 .768l-.033 .125a1.13 1.13 0 0 0 .322 1.039l.82 .797l-.194 1.127c-.07 .432 .107 .857 .454 1.108l.107 .068a1.13 1.13 0 0 0 1.078 .018l1.022 -.536l1.019 .535c.377 .2 .84 .168 1.19 -.086l.1 -.08c.281 -.259 .416 -.645 .35 -1.028l-.194 -1.126l.823 -.799c.31 -.302 .42 -.752 .287 -1.161l-.042 -.11a1.13 1.13 0 0 0 -.873 -.659l-1.138 -.166l-.508 -1.026a1.13 1.13 0 0 0 -1.014 -.63m-5.021 -4.499h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2'
18
+ )
19
+ end
20
+ end
21
+
22
+ def outline
23
+ svg(
24
+ **attrs,
25
+ xmlns: 'http://www.w3.org/2000/svg',
26
+ viewbox: '0 0 24 24',
27
+ fill: 'none',
28
+ stroke: 'currentColor',
29
+ stroke_width: '2',
30
+ stroke_linecap: 'round',
31
+ stroke_linejoin: 'round'
32
+ ) do |s|
33
+ s.path(
34
+ d:
35
+ 'M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2'
36
+ )
37
+ s.path(d: 'M8 6h.01')
38
+ s.path(d: 'M16 18h.01')
39
+ s.path(
40
+ d:
41
+ 'M11.75 14.112l-1.63 .853a.294 .294 0 0 1 -.425 -.307l.31 -1.808l-1.317 -1.28a.292 .292 0 0 1 .163 -.499l1.82 -.264l.815 -1.644a.294 .294 0 0 1 .527 0l.814 1.644l1.82 .264a.292 .292 0 0 1 .164 .499l-1.318 1.28l.31 1.807a.292 .292 0 0 1 -.425 .308z'
42
+ )
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ # rubocop:enable Layout/LineLength
@@ -1,11 +1,34 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module Phlex
4
5
  module Icons
5
6
  module Tabler
6
7
  class Sitemap < Base
7
8
  def filled
8
- raise NotImplementedError
9
+ svg(
10
+ **attrs,
11
+ xmlns: 'http://www.w3.org/2000/svg',
12
+ viewbox: '0 0 24 24',
13
+ fill: 'currentColor'
14
+ ) do |s|
15
+ s.path(
16
+ d:
17
+ 'M2 16.667a2.667 2.667 0 0 1 2.667 -2.667h2.666a2.667 2.667 0 0 1 2.667 2.667v2.666a2.667 2.667 0 0 1 -2.667 2.667h-2.666a2.667 2.667 0 0 1 -2.667 -2.667z'
18
+ )
19
+ s.path(
20
+ d:
21
+ 'M14 16.667a2.667 2.667 0 0 1 2.667 -2.667h2.666a2.667 2.667 0 0 1 2.667 2.667v2.666a2.667 2.667 0 0 1 -2.667 2.667h-2.666a2.667 2.667 0 0 1 -2.667 -2.667z'
22
+ )
23
+ s.path(
24
+ d:
25
+ 'M8 4.667a2.667 2.667 0 0 1 2.667 -2.667h2.666a2.667 2.667 0 0 1 2.667 2.667v2.666a2.667 2.667 0 0 1 -2.667 2.667h-2.666a2.667 2.667 0 0 1 -2.667 -2.667z'
26
+ )
27
+ s.path(
28
+ d:
29
+ 'M12 8a1 1 0 0 0 -1 1v2h-3c-1.645 0 -3 1.355 -3 3v1a1 1 0 0 0 1 1a1 1 0 0 0 1 -1v-1c0 -.564 .436 -1 1 -1h8c.564 0 1 .436 1 1v1a1 1 0 0 0 1 1a1 1 0 0 0 1 -1v-1c0 -1.645 -1.355 -3 -3 -3h-3v-2a1 1 0 0 0 -1 -1z'
30
+ )
31
+ end
9
32
  end
10
33
 
11
34
  def outline
@@ -39,3 +62,4 @@ module Phlex
39
62
  end
40
63
  end
41
64
  end
65
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Phlex
4
+ module Icons
5
+ module Tabler
6
+ class XPowerY < Base
7
+ def filled
8
+ raise NotImplementedError
9
+ end
10
+
11
+ def outline
12
+ svg(
13
+ **attrs,
14
+ xmlns: 'http://www.w3.org/2000/svg',
15
+ viewbox: '0 0 24 24',
16
+ fill: 'none',
17
+ stroke: 'currentColor',
18
+ stroke_width: '2',
19
+ stroke_linecap: 'round',
20
+ stroke_linejoin: 'round'
21
+ ) do |s|
22
+ s.path(d: 'M15 3l3 5.063')
23
+ s.path(d: 'M5 12l6 6')
24
+ s.path(d: 'M5 18l6 -6')
25
+ s.path(d: 'M21 3l-4.8 9')
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -3,7 +3,8 @@
3
3
  module Phlex
4
4
  module Icons
5
5
  module Tabler # rubocop:disable Metrics/ModuleLength
6
- VERSION = '3.17.0'
6
+ VERSION = '3.20.0'
7
+ VARIANTS = %i[outline filled].freeze
7
8
 
8
9
  extend Phlex::Kit
9
10
 
@@ -195,6 +196,7 @@ module Phlex
195
196
  autoload :ArrowDown, 'phlex/icons/tabler/arrow_down'
196
197
  autoload :ArrowDownBar, 'phlex/icons/tabler/arrow_down_bar'
197
198
  autoload :ArrowDownCircle, 'phlex/icons/tabler/arrow_down_circle'
199
+ autoload :ArrowDownDashed, 'phlex/icons/tabler/arrow_down_dashed'
198
200
  autoload :ArrowDownFromArc, 'phlex/icons/tabler/arrow_down_from_arc'
199
201
  autoload :ArrowDownLeft, 'phlex/icons/tabler/arrow_down_left'
200
202
  autoload :ArrowDownLeftCircle, 'phlex/icons/tabler/arrow_down_left_circle'
@@ -215,6 +217,7 @@ module Phlex
215
217
  autoload :ArrowLeft, 'phlex/icons/tabler/arrow_left'
216
218
  autoload :ArrowLeftBar, 'phlex/icons/tabler/arrow_left_bar'
217
219
  autoload :ArrowLeftCircle, 'phlex/icons/tabler/arrow_left_circle'
220
+ autoload :ArrowLeftDashed, 'phlex/icons/tabler/arrow_left_dashed'
218
221
  autoload :ArrowLeftFromArc, 'phlex/icons/tabler/arrow_left_from_arc'
219
222
  autoload :ArrowLeftRhombus, 'phlex/icons/tabler/arrow_left_rhombus'
220
223
  autoload :ArrowLeftRight, 'phlex/icons/tabler/arrow_left_right'
@@ -236,9 +239,13 @@ module Phlex
236
239
  autoload :ArrowMoveRight, 'phlex/icons/tabler/arrow_move_right'
237
240
  autoload :ArrowMoveUp, 'phlex/icons/tabler/arrow_move_up'
238
241
  autoload :ArrowNarrowDown, 'phlex/icons/tabler/arrow_narrow_down'
242
+ autoload :ArrowNarrowDownDashed, 'phlex/icons/tabler/arrow_narrow_down_dashed'
239
243
  autoload :ArrowNarrowLeft, 'phlex/icons/tabler/arrow_narrow_left'
244
+ autoload :ArrowNarrowLeftDashed, 'phlex/icons/tabler/arrow_narrow_left_dashed'
240
245
  autoload :ArrowNarrowRight, 'phlex/icons/tabler/arrow_narrow_right'
246
+ autoload :ArrowNarrowRightDashed, 'phlex/icons/tabler/arrow_narrow_right_dashed'
241
247
  autoload :ArrowNarrowUp, 'phlex/icons/tabler/arrow_narrow_up'
248
+ autoload :ArrowNarrowUpDashed, 'phlex/icons/tabler/arrow_narrow_up_dashed'
242
249
  autoload :ArrowRampLeft, 'phlex/icons/tabler/arrow_ramp_left'
243
250
  autoload :ArrowRampLeft2, 'phlex/icons/tabler/arrow_ramp_left_2'
244
251
  autoload :ArrowRampLeft3, 'phlex/icons/tabler/arrow_ramp_left_3'
@@ -248,6 +255,7 @@ module Phlex
248
255
  autoload :ArrowRight, 'phlex/icons/tabler/arrow_right'
249
256
  autoload :ArrowRightBar, 'phlex/icons/tabler/arrow_right_bar'
250
257
  autoload :ArrowRightCircle, 'phlex/icons/tabler/arrow_right_circle'
258
+ autoload :ArrowRightDashed, 'phlex/icons/tabler/arrow_right_dashed'
251
259
  autoload :ArrowRightFromArc, 'phlex/icons/tabler/arrow_right_from_arc'
252
260
  autoload :ArrowRightRhombus, 'phlex/icons/tabler/arrow_right_rhombus'
253
261
  autoload :ArrowRightSquare, 'phlex/icons/tabler/arrow_right_square'
@@ -267,6 +275,7 @@ module Phlex
267
275
  autoload :ArrowUp, 'phlex/icons/tabler/arrow_up'
268
276
  autoload :ArrowUpBar, 'phlex/icons/tabler/arrow_up_bar'
269
277
  autoload :ArrowUpCircle, 'phlex/icons/tabler/arrow_up_circle'
278
+ autoload :ArrowUpDashed, 'phlex/icons/tabler/arrow_up_dashed'
270
279
  autoload :ArrowUpFromArc, 'phlex/icons/tabler/arrow_up_from_arc'
271
280
  autoload :ArrowUpLeft, 'phlex/icons/tabler/arrow_up_left'
272
281
  autoload :ArrowUpLeftCircle, 'phlex/icons/tabler/arrow_up_left_circle'
@@ -1019,6 +1028,7 @@ module Phlex
1019
1028
  autoload :BuildingCastle, 'phlex/icons/tabler/building_castle'
1020
1029
  autoload :BuildingChurch, 'phlex/icons/tabler/building_church'
1021
1030
  autoload :BuildingCircus, 'phlex/icons/tabler/building_circus'
1031
+ autoload :BuildingCog, 'phlex/icons/tabler/building_cog'
1022
1032
  autoload :BuildingCommunity, 'phlex/icons/tabler/building_community'
1023
1033
  autoload :BuildingCottage, 'phlex/icons/tabler/building_cottage'
1024
1034
  autoload :BuildingEstate, 'phlex/icons/tabler/building_estate'
@@ -1027,10 +1037,12 @@ module Phlex
1027
1037
  autoload :BuildingFortress, 'phlex/icons/tabler/building_fortress'
1028
1038
  autoload :BuildingHospital, 'phlex/icons/tabler/building_hospital'
1029
1039
  autoload :BuildingLighthouse, 'phlex/icons/tabler/building_lighthouse'
1040
+ autoload :BuildingMinus, 'phlex/icons/tabler/building_minus'
1030
1041
  autoload :BuildingMonument, 'phlex/icons/tabler/building_monument'
1031
1042
  autoload :BuildingMosque, 'phlex/icons/tabler/building_mosque'
1032
1043
  autoload :BuildingOff, 'phlex/icons/tabler/building_off'
1033
1044
  autoload :BuildingPavilion, 'phlex/icons/tabler/building_pavilion'
1045
+ autoload :BuildingPlus, 'phlex/icons/tabler/building_plus'
1034
1046
  autoload :BuildingSkyscraper, 'phlex/icons/tabler/building_skyscraper'
1035
1047
  autoload :BuildingStadium, 'phlex/icons/tabler/building_stadium'
1036
1048
  autoload :BuildingStore, 'phlex/icons/tabler/building_store'
@@ -2149,6 +2161,7 @@ module Phlex
2149
2161
  autoload :FeatherOff, 'phlex/icons/tabler/feather_off'
2150
2162
  autoload :Fence, 'phlex/icons/tabler/fence'
2151
2163
  autoload :FenceOff, 'phlex/icons/tabler/fence_off'
2164
+ autoload :Ferry, 'phlex/icons/tabler/ferry'
2152
2165
  autoload :FidgetSpinner, 'phlex/icons/tabler/fidget_spinner'
2153
2166
  autoload :File, 'phlex/icons/tabler/file'
2154
2167
  autoload :File3d, 'phlex/icons/tabler/file_3d'
@@ -2719,6 +2732,7 @@ module Phlex
2719
2732
  autoload :JoinBevel, 'phlex/icons/tabler/join_bevel'
2720
2733
  autoload :JoinRound, 'phlex/icons/tabler/join_round'
2721
2734
  autoload :JoinStraight, 'phlex/icons/tabler/join_straight'
2735
+ autoload :Joker, 'phlex/icons/tabler/joker'
2722
2736
  autoload :Jpg, 'phlex/icons/tabler/jpg'
2723
2737
  autoload :Json, 'phlex/icons/tabler/json'
2724
2738
  autoload :JumpRope, 'phlex/icons/tabler/jump_rope'
@@ -3103,6 +3117,7 @@ module Phlex
3103
3117
  autoload :MathXDivide2, 'phlex/icons/tabler/math_x_divide_2'
3104
3118
  autoload :MathXDivideY, 'phlex/icons/tabler/math_x_divide_y'
3105
3119
  autoload :MathXDivideY2, 'phlex/icons/tabler/math_x_divide_y_2'
3120
+ autoload :MathXFloorDivideY, 'phlex/icons/tabler/math_x_floor_divide_y'
3106
3121
  autoload :MathXMinusX, 'phlex/icons/tabler/math_x_minus_x'
3107
3122
  autoload :MathXMinusY, 'phlex/icons/tabler/math_x_minus_y'
3108
3123
  autoload :MathXPlusX, 'phlex/icons/tabler/math_x_plus_x'
@@ -3381,8 +3396,10 @@ module Phlex
3381
3396
  autoload :Number0, 'phlex/icons/tabler/number_0'
3382
3397
  autoload :Number0Small, 'phlex/icons/tabler/number_0_small'
3383
3398
  autoload :Number1, 'phlex/icons/tabler/number_1'
3399
+ autoload :Number10, 'phlex/icons/tabler/number_10'
3384
3400
  autoload :Number100Small, 'phlex/icons/tabler/number_100_small'
3385
3401
  autoload :Number10Small, 'phlex/icons/tabler/number_10_small'
3402
+ autoload :Number11, 'phlex/icons/tabler/number_11'
3386
3403
  autoload :Number11Small, 'phlex/icons/tabler/number_11_small'
3387
3404
  autoload :Number123, 'phlex/icons/tabler/number_123'
3388
3405
  autoload :Number12Small, 'phlex/icons/tabler/number_12_small'
@@ -3700,7 +3717,22 @@ module Phlex
3700
3717
  autoload :PlantOff, 'phlex/icons/tabler/plant_off'
3701
3718
  autoload :PlayBasketball, 'phlex/icons/tabler/play_basketball'
3702
3719
  autoload :PlayCard, 'phlex/icons/tabler/play_card'
3720
+ autoload :PlayCard1, 'phlex/icons/tabler/play_card_1'
3721
+ autoload :PlayCard10, 'phlex/icons/tabler/play_card_10'
3722
+ autoload :PlayCard2, 'phlex/icons/tabler/play_card_2'
3723
+ autoload :PlayCard3, 'phlex/icons/tabler/play_card_3'
3724
+ autoload :PlayCard4, 'phlex/icons/tabler/play_card_4'
3725
+ autoload :PlayCard5, 'phlex/icons/tabler/play_card_5'
3726
+ autoload :PlayCard6, 'phlex/icons/tabler/play_card_6'
3727
+ autoload :PlayCard7, 'phlex/icons/tabler/play_card_7'
3728
+ autoload :PlayCard8, 'phlex/icons/tabler/play_card_8'
3729
+ autoload :PlayCard9, 'phlex/icons/tabler/play_card_9'
3730
+ autoload :PlayCardA, 'phlex/icons/tabler/play_card_a'
3731
+ autoload :PlayCardJ, 'phlex/icons/tabler/play_card_j'
3732
+ autoload :PlayCardK, 'phlex/icons/tabler/play_card_k'
3703
3733
  autoload :PlayCardOff, 'phlex/icons/tabler/play_card_off'
3734
+ autoload :PlayCardQ, 'phlex/icons/tabler/play_card_q'
3735
+ autoload :PlayCardStar, 'phlex/icons/tabler/play_card_star'
3704
3736
  autoload :PlayFootball, 'phlex/icons/tabler/play_football'
3705
3737
  autoload :PlayHandball, 'phlex/icons/tabler/play_handball'
3706
3738
  autoload :PlayVolleyball, 'phlex/icons/tabler/play_volleyball'
@@ -4821,6 +4853,7 @@ module Phlex
4821
4853
  autoload :WritingSign, 'phlex/icons/tabler/writing_sign'
4822
4854
  autoload :WritingSignOff, 'phlex/icons/tabler/writing_sign_off'
4823
4855
  autoload :X, 'phlex/icons/tabler/x'
4856
+ autoload :XPowerY, 'phlex/icons/tabler/x_power_y'
4824
4857
  autoload :XboxA, 'phlex/icons/tabler/xbox_a'
4825
4858
  autoload :XboxB, 'phlex/icons/tabler/xbox_b'
4826
4859
  autoload :XboxX, 'phlex/icons/tabler/xbox_x'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Phlex
4
4
  module Icons
5
- VERSION = '1.0.0'
5
+ VERSION = '1.2.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phlex-icons-tabler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.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: 2024-09-26 00:00:00.000000000 Z
11
+ date: 2024-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -237,6 +237,7 @@ files:
237
237
  - lib/phlex/icons/tabler/arrow_down.rb
238
238
  - lib/phlex/icons/tabler/arrow_down_bar.rb
239
239
  - lib/phlex/icons/tabler/arrow_down_circle.rb
240
+ - lib/phlex/icons/tabler/arrow_down_dashed.rb
240
241
  - lib/phlex/icons/tabler/arrow_down_from_arc.rb
241
242
  - lib/phlex/icons/tabler/arrow_down_left.rb
242
243
  - lib/phlex/icons/tabler/arrow_down_left_circle.rb
@@ -257,6 +258,7 @@ files:
257
258
  - lib/phlex/icons/tabler/arrow_left.rb
258
259
  - lib/phlex/icons/tabler/arrow_left_bar.rb
259
260
  - lib/phlex/icons/tabler/arrow_left_circle.rb
261
+ - lib/phlex/icons/tabler/arrow_left_dashed.rb
260
262
  - lib/phlex/icons/tabler/arrow_left_from_arc.rb
261
263
  - lib/phlex/icons/tabler/arrow_left_rhombus.rb
262
264
  - lib/phlex/icons/tabler/arrow_left_right.rb
@@ -278,9 +280,13 @@ files:
278
280
  - lib/phlex/icons/tabler/arrow_move_right.rb
279
281
  - lib/phlex/icons/tabler/arrow_move_up.rb
280
282
  - lib/phlex/icons/tabler/arrow_narrow_down.rb
283
+ - lib/phlex/icons/tabler/arrow_narrow_down_dashed.rb
281
284
  - lib/phlex/icons/tabler/arrow_narrow_left.rb
285
+ - lib/phlex/icons/tabler/arrow_narrow_left_dashed.rb
282
286
  - lib/phlex/icons/tabler/arrow_narrow_right.rb
287
+ - lib/phlex/icons/tabler/arrow_narrow_right_dashed.rb
283
288
  - lib/phlex/icons/tabler/arrow_narrow_up.rb
289
+ - lib/phlex/icons/tabler/arrow_narrow_up_dashed.rb
284
290
  - lib/phlex/icons/tabler/arrow_ramp_left.rb
285
291
  - lib/phlex/icons/tabler/arrow_ramp_left_2.rb
286
292
  - lib/phlex/icons/tabler/arrow_ramp_left_3.rb
@@ -290,6 +296,7 @@ files:
290
296
  - lib/phlex/icons/tabler/arrow_right.rb
291
297
  - lib/phlex/icons/tabler/arrow_right_bar.rb
292
298
  - lib/phlex/icons/tabler/arrow_right_circle.rb
299
+ - lib/phlex/icons/tabler/arrow_right_dashed.rb
293
300
  - lib/phlex/icons/tabler/arrow_right_from_arc.rb
294
301
  - lib/phlex/icons/tabler/arrow_right_rhombus.rb
295
302
  - lib/phlex/icons/tabler/arrow_right_square.rb
@@ -309,6 +316,7 @@ files:
309
316
  - lib/phlex/icons/tabler/arrow_up.rb
310
317
  - lib/phlex/icons/tabler/arrow_up_bar.rb
311
318
  - lib/phlex/icons/tabler/arrow_up_circle.rb
319
+ - lib/phlex/icons/tabler/arrow_up_dashed.rb
312
320
  - lib/phlex/icons/tabler/arrow_up_from_arc.rb
313
321
  - lib/phlex/icons/tabler/arrow_up_left.rb
314
322
  - lib/phlex/icons/tabler/arrow_up_left_circle.rb
@@ -1062,6 +1070,7 @@ files:
1062
1070
  - lib/phlex/icons/tabler/building_castle.rb
1063
1071
  - lib/phlex/icons/tabler/building_church.rb
1064
1072
  - lib/phlex/icons/tabler/building_circus.rb
1073
+ - lib/phlex/icons/tabler/building_cog.rb
1065
1074
  - lib/phlex/icons/tabler/building_community.rb
1066
1075
  - lib/phlex/icons/tabler/building_cottage.rb
1067
1076
  - lib/phlex/icons/tabler/building_estate.rb
@@ -1070,10 +1079,12 @@ files:
1070
1079
  - lib/phlex/icons/tabler/building_fortress.rb
1071
1080
  - lib/phlex/icons/tabler/building_hospital.rb
1072
1081
  - lib/phlex/icons/tabler/building_lighthouse.rb
1082
+ - lib/phlex/icons/tabler/building_minus.rb
1073
1083
  - lib/phlex/icons/tabler/building_monument.rb
1074
1084
  - lib/phlex/icons/tabler/building_mosque.rb
1075
1085
  - lib/phlex/icons/tabler/building_off.rb
1076
1086
  - lib/phlex/icons/tabler/building_pavilion.rb
1087
+ - lib/phlex/icons/tabler/building_plus.rb
1077
1088
  - lib/phlex/icons/tabler/building_skyscraper.rb
1078
1089
  - lib/phlex/icons/tabler/building_stadium.rb
1079
1090
  - lib/phlex/icons/tabler/building_store.rb
@@ -2193,6 +2204,7 @@ files:
2193
2204
  - lib/phlex/icons/tabler/feather_off.rb
2194
2205
  - lib/phlex/icons/tabler/fence.rb
2195
2206
  - lib/phlex/icons/tabler/fence_off.rb
2207
+ - lib/phlex/icons/tabler/ferry.rb
2196
2208
  - lib/phlex/icons/tabler/fidget_spinner.rb
2197
2209
  - lib/phlex/icons/tabler/file.rb
2198
2210
  - lib/phlex/icons/tabler/file_3d.rb
@@ -2763,6 +2775,7 @@ files:
2763
2775
  - lib/phlex/icons/tabler/join_bevel.rb
2764
2776
  - lib/phlex/icons/tabler/join_round.rb
2765
2777
  - lib/phlex/icons/tabler/join_straight.rb
2778
+ - lib/phlex/icons/tabler/joker.rb
2766
2779
  - lib/phlex/icons/tabler/jpg.rb
2767
2780
  - lib/phlex/icons/tabler/json.rb
2768
2781
  - lib/phlex/icons/tabler/jump_rope.rb
@@ -3147,6 +3160,7 @@ files:
3147
3160
  - lib/phlex/icons/tabler/math_x_divide_2.rb
3148
3161
  - lib/phlex/icons/tabler/math_x_divide_y.rb
3149
3162
  - lib/phlex/icons/tabler/math_x_divide_y_2.rb
3163
+ - lib/phlex/icons/tabler/math_x_floor_divide_y.rb
3150
3164
  - lib/phlex/icons/tabler/math_x_minus_x.rb
3151
3165
  - lib/phlex/icons/tabler/math_x_minus_y.rb
3152
3166
  - lib/phlex/icons/tabler/math_x_plus_x.rb
@@ -3425,8 +3439,10 @@ files:
3425
3439
  - lib/phlex/icons/tabler/number_0.rb
3426
3440
  - lib/phlex/icons/tabler/number_0_small.rb
3427
3441
  - lib/phlex/icons/tabler/number_1.rb
3442
+ - lib/phlex/icons/tabler/number_10.rb
3428
3443
  - lib/phlex/icons/tabler/number_100_small.rb
3429
3444
  - lib/phlex/icons/tabler/number_10_small.rb
3445
+ - lib/phlex/icons/tabler/number_11.rb
3430
3446
  - lib/phlex/icons/tabler/number_11_small.rb
3431
3447
  - lib/phlex/icons/tabler/number_123.rb
3432
3448
  - lib/phlex/icons/tabler/number_12_small.rb
@@ -3744,7 +3760,22 @@ files:
3744
3760
  - lib/phlex/icons/tabler/plant_off.rb
3745
3761
  - lib/phlex/icons/tabler/play_basketball.rb
3746
3762
  - lib/phlex/icons/tabler/play_card.rb
3763
+ - lib/phlex/icons/tabler/play_card_1.rb
3764
+ - lib/phlex/icons/tabler/play_card_10.rb
3765
+ - lib/phlex/icons/tabler/play_card_2.rb
3766
+ - lib/phlex/icons/tabler/play_card_3.rb
3767
+ - lib/phlex/icons/tabler/play_card_4.rb
3768
+ - lib/phlex/icons/tabler/play_card_5.rb
3769
+ - lib/phlex/icons/tabler/play_card_6.rb
3770
+ - lib/phlex/icons/tabler/play_card_7.rb
3771
+ - lib/phlex/icons/tabler/play_card_8.rb
3772
+ - lib/phlex/icons/tabler/play_card_9.rb
3773
+ - lib/phlex/icons/tabler/play_card_a.rb
3774
+ - lib/phlex/icons/tabler/play_card_j.rb
3775
+ - lib/phlex/icons/tabler/play_card_k.rb
3747
3776
  - lib/phlex/icons/tabler/play_card_off.rb
3777
+ - lib/phlex/icons/tabler/play_card_q.rb
3778
+ - lib/phlex/icons/tabler/play_card_star.rb
3748
3779
  - lib/phlex/icons/tabler/play_football.rb
3749
3780
  - lib/phlex/icons/tabler/play_handball.rb
3750
3781
  - lib/phlex/icons/tabler/play_volleyball.rb
@@ -4865,6 +4896,7 @@ files:
4865
4896
  - lib/phlex/icons/tabler/writing_sign.rb
4866
4897
  - lib/phlex/icons/tabler/writing_sign_off.rb
4867
4898
  - lib/phlex/icons/tabler/x.rb
4899
+ - lib/phlex/icons/tabler/x_power_y.rb
4868
4900
  - lib/phlex/icons/tabler/xbox_a.rb
4869
4901
  - lib/phlex/icons/tabler/xbox_b.rb
4870
4902
  - lib/phlex/icons/tabler/xbox_x.rb