phlex-icons-tabler 1.1.0 → 1.3.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/tabler/arrow_down_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/arrow_left_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/arrow_narrow_down_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/arrow_narrow_left_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/arrow_narrow_right_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/arrow_narrow_up_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/arrow_right_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/arrow_up_dashed.rb +30 -0
- data/lib/phlex/icons/tabler/brand_angular.rb +11 -1
- data/lib/phlex/icons/tabler/brand_instagram.rb +16 -4
- data/lib/phlex/icons/tabler/brand_kick.rb +13 -1
- data/lib/phlex/icons/tabler/brand_linkedin.rb +18 -6
- data/lib/phlex/icons/tabler/brand_open_source.rb +13 -1
- data/lib/phlex/icons/tabler/brand_opera.rb +13 -1
- data/lib/phlex/icons/tabler/brand_pinterest.rb +13 -1
- data/lib/phlex/icons/tabler/brand_sketch.rb +11 -1
- data/lib/phlex/icons/tabler/brand_snapchat.rb +11 -1
- data/lib/phlex/icons/tabler/brand_steam.rb +11 -1
- data/lib/phlex/icons/tabler/brand_stripe.rb +11 -1
- data/lib/phlex/icons/tabler/brand_tabler.rb +15 -3
- data/lib/phlex/icons/tabler/brand_tinder.rb +11 -1
- data/lib/phlex/icons/tabler/brand_tumblr.rb +13 -1
- data/lib/phlex/icons/tabler/brand_vercel.rb +11 -1
- data/lib/phlex/icons/tabler/brand_vimeo.rb +11 -1
- data/lib/phlex/icons/tabler/brand_whatsapp.rb +13 -1
- data/lib/phlex/icons/tabler/brand_windows.rb +11 -1
- data/lib/phlex/icons/tabler/building_cog.rb +49 -0
- data/lib/phlex/icons/tabler/building_minus.rb +40 -0
- data/lib/phlex/icons/tabler/building_plus.rb +41 -0
- data/lib/phlex/icons/tabler/favicon.rb +14 -1
- data/lib/phlex/icons/tabler/ferry.rb +30 -0
- data/lib/phlex/icons/tabler/icons.rb +24 -1
- data/lib/phlex/icons/tabler/ironing_1.rb +13 -1
- data/lib/phlex/icons/tabler/ironing_2.rb +13 -1
- data/lib/phlex/icons/tabler/ironing_3.rb +13 -1
- data/lib/phlex/icons/tabler/ironing_steam.rb +19 -1
- data/lib/phlex/icons/tabler/joker.rb +36 -0
- data/lib/phlex/icons/tabler/math_x_floor_divide_y.rb +33 -0
- data/lib/phlex/icons/tabler/number_10.rb +29 -0
- data/lib/phlex/icons/tabler/number_11.rb +29 -0
- data/lib/phlex/icons/tabler/play_card_1.rb +46 -0
- data/lib/phlex/icons/tabler/play_card_10.rb +50 -0
- data/lib/phlex/icons/tabler/play_card_2.rb +49 -0
- data/lib/phlex/icons/tabler/play_card_3.rb +46 -0
- data/lib/phlex/icons/tabler/play_card_4.rb +47 -0
- data/lib/phlex/icons/tabler/play_card_5.rb +46 -0
- data/lib/phlex/icons/tabler/play_card_6.rb +49 -0
- data/lib/phlex/icons/tabler/play_card_7.rb +46 -0
- data/lib/phlex/icons/tabler/play_card_8.rb +53 -0
- data/lib/phlex/icons/tabler/play_card_9.rb +49 -0
- data/lib/phlex/icons/tabler/play_card_a.rb +47 -0
- data/lib/phlex/icons/tabler/play_card_j.rb +46 -0
- data/lib/phlex/icons/tabler/play_card_k.rb +48 -0
- data/lib/phlex/icons/tabler/play_card_q.rb +47 -0
- data/lib/phlex/icons/tabler/play_card_star.rb +49 -0
- data/lib/phlex/icons/tabler/sitemap.rb +25 -1
- data/lib/phlex/icons/tabler/x_power_y.rb +31 -0
- data/lib/phlex/icons/tabler.rb +34 -1
- data/lib/phlex/icons/version.rb +1 -1
- metadata +34 -2
@@ -5,7 +5,17 @@ module Phlex
|
|
5
5
|
module Tabler
|
6
6
|
class BrandVercel < Base
|
7
7
|
def filled
|
8
|
-
|
8
|
+
svg(
|
9
|
+
**attrs,
|
10
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
11
|
+
viewbox: '0 0 24 24',
|
12
|
+
fill: 'currentColor'
|
13
|
+
) do |s|
|
14
|
+
s.path(
|
15
|
+
d:
|
16
|
+
'M11.143 3.486a1 1 0 0 1 1.714 0l9 15a1 1 0 0 1 -.857 1.514h-18a1 1 0 0 1 -.857 -1.514z'
|
17
|
+
)
|
18
|
+
end
|
9
19
|
end
|
10
20
|
|
11
21
|
def outline
|
@@ -6,7 +6,17 @@ module Phlex
|
|
6
6
|
module Tabler
|
7
7
|
class BrandVimeo < Base
|
8
8
|
def filled
|
9
|
-
|
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
|
+
'M18.5 3c2.38 0 3.985 2.174 3.486 5.164c-.535 3.21 -2.25 6.074 -4.808 8.675c-1.277 1.298 -2.211 2.061 -4.112 3.485c-2.323 1.597 -4.408 .365 -5.47 -1.897c-.292 -.618 -.586 -1.724 -1.248 -4.477l-.03 -.126c-.483 -2.01 -.819 -3.319 -.982 -3.878l-.016 -.052l-.031 .013l-.13 .06l-.137 .07a4 4 0 0 0 -.43 .269a1 1 0 0 1 -1.3 -.099l-1 -1a1 1 0 0 1 -.124 -1.262a20 20 0 0 1 1.918 -2.382c.98 -1.037 1.955 -1.816 2.928 -2.233c.5 -.214 .996 -.33 1.486 -.33c2.237 0 3.02 1.588 3.567 4.963c.03 .183 .057 .359 .112 .709c.123 .784 .197 1.198 .292 1.588c.292 1.185 .528 1.984 .735 2.483l-.016 -.039l.096 -.107c.354 -.411 .757 -1.014 1.172 -1.771l.157 -.291c.391 -.745 .505 -1.528 .363 -1.9c-.028 -.073 .007 -.065 -.456 .218a1 1 0 0 1 -1.51 -1.013c.496 -3.053 2.745 -4.84 5.488 -4.84'
|
18
|
+
)
|
19
|
+
end
|
10
20
|
end
|
11
21
|
|
12
22
|
def outline
|
@@ -1,11 +1,22 @@
|
|
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 BrandWhatsapp < Base
|
7
8
|
def filled
|
8
|
-
|
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
|
+
'M18.497 4.409a10 10 0 0 1 -10.36 16.828l-.223 -.098l-4.759 .849l-.11 .011a1 1 0 0 1 -.11 0l-.102 -.013l-.108 -.024l-.105 -.037l-.099 -.047l-.093 -.058l-.014 -.011l-.012 -.007l-.086 -.073l-.077 -.08l-.067 -.088l-.056 -.094l-.034 -.07l-.04 -.108l-.028 -.128l-.012 -.102a1 1 0 0 1 0 -.125l.012 -.1l.024 -.11l.045 -.122l1.433 -3.304l-.009 -.014a10 10 0 0 1 1.549 -12.454l.215 -.203a10 10 0 0 1 13.226 -.217m-8.997 3.09a1.5 1.5 0 0 0 -1.5 1.5v1a6 6 0 0 0 6 6h1a1.5 1.5 0 0 0 0 -3h-1l-.144 .007a1.5 1.5 0 0 0 -1.128 .697l-.042 .074l-.022 -.007a4.01 4.01 0 0 1 -2.435 -2.435l-.008 -.023l.075 -.041a1.5 1.5 0 0 0 .704 -1.272v-1a1.5 1.5 0 0 0 -1.5 -1.5'
|
18
|
+
)
|
19
|
+
end
|
9
20
|
end
|
10
21
|
|
11
22
|
def outline
|
@@ -30,3 +41,4 @@ module Phlex
|
|
30
41
|
end
|
31
42
|
end
|
32
43
|
end
|
44
|
+
# rubocop:enable Layout/LineLength
|
@@ -6,7 +6,17 @@ module Phlex
|
|
6
6
|
module Tabler
|
7
7
|
class BrandWindows < Base
|
8
8
|
def filled
|
9
|
-
|
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
|
+
'M21 13v5c0 1.57 -1.248 2.832 -2.715 2.923l-.113 .003l-.042 .018a1 1 0 0 1 -.336 .056l-.118 -.008l-4.676 -.585v-7.407zm-10 0v7.157l-5.3 -.662c-1.514 -.151 -2.7 -1.383 -2.7 -2.895v-3.6zm0 -9.158v7.158h-8v-3.6c0 -1.454 1.096 -2.648 2.505 -2.87zm10 2.058v5.1h-8v-7.409l4.717 -.589c1.759 -.145 3.283 1.189 3.283 2.898'
|
18
|
+
)
|
19
|
+
end
|
10
20
|
end
|
11
21
|
|
12
22
|
def outline
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength,Metrics/MethodLength
|
4
|
+
module Phlex
|
5
|
+
module Icons
|
6
|
+
module Tabler
|
7
|
+
class BuildingCog < Base
|
8
|
+
def filled
|
9
|
+
raise NotImplementedError
|
10
|
+
end
|
11
|
+
|
12
|
+
def outline
|
13
|
+
svg(
|
14
|
+
**attrs,
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
16
|
+
viewbox: '0 0 24 24',
|
17
|
+
fill: 'none',
|
18
|
+
stroke: 'currentColor',
|
19
|
+
stroke_width: '2',
|
20
|
+
stroke_linecap: 'round',
|
21
|
+
stroke_linejoin: 'round'
|
22
|
+
) do |s|
|
23
|
+
s.path(d: 'M3 21h9')
|
24
|
+
s.path(d: 'M9 8h1')
|
25
|
+
s.path(d: 'M9 12h1')
|
26
|
+
s.path(d: 'M9 16h1')
|
27
|
+
s.path(d: 'M14 8h1')
|
28
|
+
s.path(d: 'M14 12h1')
|
29
|
+
s.path(
|
30
|
+
d:
|
31
|
+
'M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7'
|
32
|
+
)
|
33
|
+
s.path(
|
34
|
+
d:
|
35
|
+
'M16 18c0 .53 .211 1.039 .586 1.414c.375 .375 .884 .586 1.414 .586c.53 0 1.039 -.211 1.414 -.586c.375 -.375 .586 -.884 .586 -1.414c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414z'
|
36
|
+
)
|
37
|
+
s.path(d: 'M18 14.5v1.5')
|
38
|
+
s.path(d: 'M18 20v1.5')
|
39
|
+
s.path(d: 'M21.032 16.25l-1.299 .75')
|
40
|
+
s.path(d: 'M16.27 19l-1.3 .75')
|
41
|
+
s.path(d: 'M14.97 16.25l1.3 .75')
|
42
|
+
s.path(d: 'M19.733 19l1.3 .75')
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
# rubocop:enable Layout/LineLength,Metrics/MethodLength
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module Phlex
|
5
|
+
module Icons
|
6
|
+
module Tabler
|
7
|
+
class BuildingMinus < Base
|
8
|
+
def filled
|
9
|
+
raise NotImplementedError
|
10
|
+
end
|
11
|
+
|
12
|
+
def outline
|
13
|
+
svg(
|
14
|
+
**attrs,
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
16
|
+
viewbox: '0 0 24 24',
|
17
|
+
fill: 'none',
|
18
|
+
stroke: 'currentColor',
|
19
|
+
stroke_width: '2',
|
20
|
+
stroke_linecap: 'round',
|
21
|
+
stroke_linejoin: 'round'
|
22
|
+
) do |s|
|
23
|
+
s.path(d: 'M3 21h9')
|
24
|
+
s.path(d: 'M9 8h1')
|
25
|
+
s.path(d: 'M9 12h1')
|
26
|
+
s.path(d: 'M9 16h1')
|
27
|
+
s.path(d: 'M14 8h1')
|
28
|
+
s.path(d: 'M14 12h1')
|
29
|
+
s.path(
|
30
|
+
d:
|
31
|
+
'M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7'
|
32
|
+
)
|
33
|
+
s.path(d: 'M16 19h6')
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength,Metrics/MethodLength
|
4
|
+
module Phlex
|
5
|
+
module Icons
|
6
|
+
module Tabler
|
7
|
+
class BuildingPlus < Base
|
8
|
+
def filled
|
9
|
+
raise NotImplementedError
|
10
|
+
end
|
11
|
+
|
12
|
+
def outline
|
13
|
+
svg(
|
14
|
+
**attrs,
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
16
|
+
viewbox: '0 0 24 24',
|
17
|
+
fill: 'none',
|
18
|
+
stroke: 'currentColor',
|
19
|
+
stroke_width: '2',
|
20
|
+
stroke_linecap: 'round',
|
21
|
+
stroke_linejoin: 'round'
|
22
|
+
) do |s|
|
23
|
+
s.path(d: 'M3 21h9')
|
24
|
+
s.path(d: 'M9 8h1')
|
25
|
+
s.path(d: 'M9 12h1')
|
26
|
+
s.path(d: 'M9 16h1')
|
27
|
+
s.path(d: 'M14 8h1')
|
28
|
+
s.path(d: 'M14 12h1')
|
29
|
+
s.path(
|
30
|
+
d:
|
31
|
+
'M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7'
|
32
|
+
)
|
33
|
+
s.path(d: 'M16 19h6')
|
34
|
+
s.path(d: 'M19 16v6')
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
# rubocop:enable Layout/LineLength,Metrics/MethodLength
|
@@ -1,11 +1,23 @@
|
|
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 Favicon < Base
|
7
8
|
def filled
|
8
|
-
|
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
|
+
'M19 4a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-14a4 4 0 0 1 -4 -4v-8a4 4 0 0 1 4 -4zm-13 5a1 1 0 0 0 -1 1v4a1 1 0 0 0 2 0v-4a1 1 0 0 0 -1 -1m5 0a3 3 0 0 0 0 6a1 1 0 0 0 .117 -1.993l-.117 -.007a1 1 0 0 1 -.117 -1.993l.117 -.007a1 1 0 0 0 0 -2m5 0a3 3 0 0 0 -2.995 2.824l-.005 .176a3 3 0 1 0 3 -3'
|
18
|
+
)
|
19
|
+
s.path(d: 'M16 11a1 1 0 1 0 0 2a1 1 0 0 0 0 -2')
|
20
|
+
end
|
9
21
|
end
|
10
22
|
|
11
23
|
def outline
|
@@ -32,3 +44,4 @@ module Phlex
|
|
32
44
|
end
|
33
45
|
end
|
34
46
|
end
|
47
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class Ferry < 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: 'M3 17h14.08a3 3 0 0 0 2.5 -1.34l2.141 -2.66h-17.221z')
|
23
|
+
s.path(d: 'M14.556 7.959l-.382 -1.415')
|
24
|
+
s.path(d: 'M6.107 12.675l1.384 -4.675h8l2.675 4.598')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -5,7 +5,30 @@ module Phlex
|
|
5
5
|
module Tabler
|
6
6
|
class Icons < Base
|
7
7
|
def filled
|
8
|
-
|
8
|
+
svg(
|
9
|
+
**attrs,
|
10
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
11
|
+
viewbox: '0 0 24 24',
|
12
|
+
fill: 'currentColor'
|
13
|
+
) do |s|
|
14
|
+
s.path(
|
15
|
+
d:
|
16
|
+
'M4.25 2.603a4.5 4.5 0 1 1 -2.25 3.897l.006 -.229a4.5 4.5 0 0 1 2.244 -3.668'
|
17
|
+
)
|
18
|
+
s.path(
|
19
|
+
d:
|
20
|
+
'M5.632 13.504a1 1 0 0 1 1.736 0l4 7a1 1 0 0 1 -.868 1.496h-8a1 1 0 0 1 -.868 -1.496z'
|
21
|
+
)
|
22
|
+
s.path(
|
23
|
+
d:
|
24
|
+
'M13.293 2.293a1 1 0 0 1 1.414 0l7 7a1 1 0 1 1 -1.414 1.414l-7 -7a1 1 0 0 1 0 -1.414'
|
25
|
+
)
|
26
|
+
s.path(d: 'M20.293 2.293a1 1 0 0 1 1.414 1.414l-7 7a1 1 0 0 1 -1.414 -1.414z')
|
27
|
+
s.path(
|
28
|
+
d:
|
29
|
+
'M21 13a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-7a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1z'
|
30
|
+
)
|
31
|
+
end
|
9
32
|
end
|
10
33
|
|
11
34
|
def outline
|
@@ -1,11 +1,22 @@
|
|
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 Ironing1 < Base
|
7
8
|
def filled
|
8
|
-
|
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
|
+
'M16.459 5a4 4 0 0 1 3.945 3.343l1.387 8.329a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2zm-4.449 9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2'
|
18
|
+
)
|
19
|
+
end
|
9
20
|
end
|
10
21
|
|
11
22
|
def outline
|
@@ -30,3 +41,4 @@ module Phlex
|
|
30
41
|
end
|
31
42
|
end
|
32
43
|
end
|
44
|
+
# rubocop:enable Layout/LineLength
|
@@ -1,11 +1,22 @@
|
|
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 Ironing2 < Base
|
7
8
|
def filled
|
8
|
-
|
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
|
+
'M16.459 5a4 4 0 0 1 3.945 3.343l1.387 8.329a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2zm-6.449 9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m4 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2'
|
18
|
+
)
|
19
|
+
end
|
9
20
|
end
|
10
21
|
|
11
22
|
def outline
|
@@ -31,3 +42,4 @@ module Phlex
|
|
31
42
|
end
|
32
43
|
end
|
33
44
|
end
|
45
|
+
# rubocop:enable Layout/LineLength
|
@@ -1,11 +1,22 @@
|
|
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 Ironing3 < Base
|
7
8
|
def filled
|
8
|
-
|
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
|
+
'M16.459 5a4 4 0 0 1 3.945 3.343l1.387 8.329a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2zm-4.449 9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-3 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m6 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2'
|
18
|
+
)
|
19
|
+
end
|
9
20
|
end
|
10
21
|
|
11
22
|
def outline
|
@@ -32,3 +43,4 @@ module Phlex
|
|
32
43
|
end
|
33
44
|
end
|
34
45
|
end
|
46
|
+
# rubocop:enable Layout/LineLength
|
@@ -1,11 +1,28 @@
|
|
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 IroningSteam < Base
|
7
8
|
def filled
|
8
|
-
|
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(d: 'M12 18a1 1 0 0 1 1 1v2a1 1 0 0 1 -2 0v-2a1 1 0 0 1 1 -1')
|
16
|
+
s.path(
|
17
|
+
d:
|
18
|
+
'M16.459 3a4 4 0 0 1 3.945 3.343l.577 3.464l.81 4.865a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2z'
|
19
|
+
)
|
20
|
+
s.path(d: 'M7.106 18.553a1 1 0 0 1 1.788 .894l-1 2a1 1 0 0 1 -1.788 -.894z')
|
21
|
+
s.path(
|
22
|
+
d:
|
23
|
+
'M15.553 18.106a1 1 0 0 1 1.341 .447l1 2a1 1 0 0 1 -1.788 .894l-1 -2a1 1 0 0 1 .447 -1.341'
|
24
|
+
)
|
25
|
+
end
|
9
26
|
end
|
10
27
|
|
11
28
|
def outline
|
@@ -32,3 +49,4 @@ module Phlex
|
|
32
49
|
end
|
33
50
|
end
|
34
51
|
end
|
52
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module Phlex
|
5
|
+
module Icons
|
6
|
+
module Tabler
|
7
|
+
class Joker < Base
|
8
|
+
def filled
|
9
|
+
raise NotImplementedError
|
10
|
+
end
|
11
|
+
|
12
|
+
def outline
|
13
|
+
svg(
|
14
|
+
**attrs,
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
16
|
+
viewbox: '0 0 24 24',
|
17
|
+
fill: 'none',
|
18
|
+
stroke: 'currentColor',
|
19
|
+
stroke_width: '2',
|
20
|
+
stroke_linecap: 'round',
|
21
|
+
stroke_linejoin: 'round'
|
22
|
+
) do |s|
|
23
|
+
s.path(
|
24
|
+
d:
|
25
|
+
'M5 16m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h11a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-11a1.5 1.5 0 0 1 -1.5 -1.5z'
|
26
|
+
)
|
27
|
+
s.path(d: 'M12 16q -2.5 -8 -6 -8q -2.5 0 -3 2c2.953 .31 3.308 3.33 4 6')
|
28
|
+
s.path(d: 'M12 16q 2.5 -8 6 -8q 2.5 0 3 2c-2.953 .31 -3.308 3.33 -4 6')
|
29
|
+
s.path(d: 'M9 9.5q 2 -3.5 3 -3.5t 3 3.5')
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
# rubocop:enable Layout/LineLength
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class MathXFloorDivideY < 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: 'M1.5 19l18 -18')
|
23
|
+
s.path(d: 'M4.5 22l18 -18')
|
24
|
+
s.path(d: 'M18 15l3 4')
|
25
|
+
s.path(d: 'M23 15l-4.5 8')
|
26
|
+
s.path(d: 'M1 1l6 6')
|
27
|
+
s.path(d: 'M1 7l6 -6')
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -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
|