phlex-icons-tabler 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
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,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Phlex
4
+ module Icons
5
+ module Tabler
6
+ class Number10 < 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: 'M8 20v-16l-5 5')
23
+ s.path(d: 'M16 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Phlex
4
+ module Icons
5
+ module Tabler
6
+ class Number11 < 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: 'M8 20v-16l-5 5')
23
+ s.path(d: 'M18 20v-16l-5 5')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCard1 < 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 -10a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-6a1 1 0 0 0 -1 -1m-4.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: 'M12 9v6')
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCard10 < 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-8.01 -10a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-6a1 1 0 0 0 -1 -1m4.5 0c-1.453 0 -2.5 1.395 -2.5 3v2c0 1.605 1.047 3 2.5 3s2.5 -1.395 2.5 -3v-2c0 -1.605 -1.047 -3 -2.5 -3m0 2c.203 0 .5 .395 .5 1v2c0 .605 -.297 1 -.5 1s-.5 -.395 -.5 -1v-2c0 -.605 .297 -1 .5 -1m-6.49 -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: 'M9 9v6')
40
+ s.path(
41
+ d:
42
+ 'M12 13c0 1.105 .672 2 1.5 2s1.5 -.895 1.5 -2v-2c0 -1.105 -.672 -2 -1.5 -2s-1.5 .895 -1.5 2z'
43
+ )
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+ # 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 PlayCard2 < 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 0 2h.01a1 1 0 0 0 0 -2m-4.01 -10h-3a1 1 0 1 0 0 2h3v1h-2a2 2 0 0 0 -2 2v1a2 2 0 0 0 2 2h3a1 1 0 0 0 0 -2h-3v-1h2a2 2 0 0 0 2 -2v-1a2 2 0 0 0 -2 -2m-5.99 -4h-.01a1 1 0 1 0 0 2h.01a1 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
+ 'M10 9h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3'
42
+ )
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCard3 < 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.51 -10h-2.5a1 1 0 1 0 0 2h2.5a.5 .5 0 0 1 .09 .992l-.09 .008h-1.5c-1.287 0 -1.332 1.864 -.133 1.993l.133 .007h1.5a.5 .5 0 1 1 0 1h-2.5a1 1 0 0 0 0 2h2.5a2.5 2.5 0 0 0 2.5 -2.5l-.005 -.164a2.5 2.5 0 0 0 -.477 -1.312l-.019 -.024l.019 -.024a2.5 2.5 0 0 0 -2.018 -3.976m-5.49 -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 9h2.5a1.5 1.5 0 0 1 0 3h-1.5h1.5a1.5 1.5 0 0 1 0 3h-2.5')
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ # 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 PlayCard4 < 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-3.01 -10a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -2 0v2a2 2 0 0 0 2 2h2v2a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1m-6.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 9v2a1 1 0 0 0 1 1h3')
40
+ s.path(d: 'M14 9v6')
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
47
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCard5 < 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 0 2h.01a1 1 0 0 0 0 -2m-3.01 -10h-4a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1h3v1h-3a1 1 0 0 0 0 2h3a2 2 0 0 0 2 -2v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85h-2v-1h3a1 1 0 0 0 0 -2m-6.99 -4h-.01a1 1 0 1 0 0 2h.01a1 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 15h3a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-3v-3h4')
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ # 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 PlayCard6 < 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-3.01 -10h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85h-2v-1h3a1 1 0 0 0 0 -2m-1 5v1h-2v-1zm-5.99 -9h-.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
+ 'M14 9h-3a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-3'
42
+ )
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCard7 < 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 0 2h.01a1 1 0 0 0 0 -2m-3.01 -10h-4a1 1 0 0 0 -1 1l.007 .117a1 1 0 0 0 .993 .883h2.612l-1.56 4.684a1 1 0 1 0 1.897 .632l2 -6a1 1 0 0 0 -.949 -1.316m-6.99 -4h-.01a1 1 0 1 0 0 2h.01a1 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: 'M10 9h4l-2 6')
38
+ s.path(d: 'M8 6h.01')
39
+ s.path(d: 'M16 18h.01')
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCard8 < 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.01 -10h-2a2 2 0 0 0 -2 2v1c0 .365 .098 .707 .268 1.001c-.17 .293 -.268 .635 -.268 .999v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-1a2 2 0 0 0 -.268 -1c.17 -.293 .268 -.635 .268 -1v-1a2 2 0 0 0 -2 -2m0 5v1h-2v-1zm0 -3v1h-2v-1zm-5.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(
40
+ d:
41
+ 'M12 12h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1z'
42
+ )
43
+ s.path(
44
+ d:
45
+ 'M12 12h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1'
46
+ )
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
53
+ # 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 PlayCard9 < 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 0 2h.01a1 1 0 0 0 0 -2m-4.01 -10h-2a2 2 0 0 0 -2 2v1l.005 .15a2 2 0 0 0 1.995 1.85h2v1h-3a1 1 0 0 0 0 2h3a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2m0 2v1h-2v-1zm-5.99 -6h-.01a1 1 0 1 0 0 2h.01a1 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
+ 'M10 15h3a1 1 0 0 0 1 -1v-4a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3'
42
+ )
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ # 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 PlayCardA < 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 3v4a1 1 0 0 0 2 0v-1h2v1a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-4a3 3 0 0 0 -3 -3m0 2a1 1 0 0 1 1 1v1h-2v-1a1 1 0 0 1 .883 -.993zm-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: 'M10 15v-4a2 2 0 1 1 4 0v4')
40
+ s.path(d: 'M10 13h4')
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
47
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module Phlex
5
+ module Icons
6
+ module Tabler
7
+ class PlayCardJ < 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 0 2h.01a1 1 0 0 0 0 -2m-3.01 -10h-4a1 1 0 0 0 -1 1l.007 .117a1 1 0 0 0 .993 .883h3v3a1 1 0 0 1 -2 0a1 1 0 0 0 -2 0a3 3 0 0 0 6 0v-4a1 1 0 0 0 -1 -1m-6.99 -4h-.01a1 1 0 1 0 0 2h.01a1 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 9h4v4a2 2 0 1 1 -4 0')
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ # rubocop:enable Layout/LineLength