phlex-icons-tabler 1.1.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.
- 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/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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62e34758e1091537462327b4c72a371a93b57e39b18f069febdac260cfa93643
|
4
|
+
data.tar.gz: 8888b855b32af6dec102f254cb87cdc59966ced819cc4ccf4f03f21bc2f8dc42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2839cebc91a375b7479bdfef16405e9ba59fcf0a37fa28d1ff0b0e1288087596616d0d7b9cffe60bcc7f29efa6e14f26edbfda489016a372823af9bdf0de3b67
|
7
|
+
data.tar.gz: 3cf15a4dddbdc2526de4163d60da59c3ba58de7498b21541374f8fd8233deebf4c5bc31d831b3687801f8357772c9d7250ed31a9ebc664c0fa86667ba0d0b26a
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowDownDashed < 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: 'M12 5v.5m0 3v1.5m0 3v6')
|
23
|
+
s.path(d: 'M18 13l-6 6')
|
24
|
+
s.path(d: 'M6 13l6 6')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowLeftDashed < 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: 'M5 12h6m3 0h1.5m3 0h.5')
|
23
|
+
s.path(d: 'M5 12l6 6')
|
24
|
+
s.path(d: 'M5 12l6 -6')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowNarrowDownDashed < 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: 'M12 5v.5m0 3v1.5m0 3v6')
|
23
|
+
s.path(d: 'M16 15l-4 4')
|
24
|
+
s.path(d: 'M8 15l4 4')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowNarrowLeftDashed < 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: 'M5 12h6m3 0h1.5m3 0h.5')
|
23
|
+
s.path(d: 'M5 12l4 4')
|
24
|
+
s.path(d: 'M5 12l4 -4')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowNarrowRightDashed < 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: 'M5 12h.5m3 0h1.5m3 0h6')
|
23
|
+
s.path(d: 'M15 16l4 -4')
|
24
|
+
s.path(d: 'M15 8l4 4')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowNarrowUpDashed < 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: 'M12 5v6m0 3v1.5m0 3v.5')
|
23
|
+
s.path(d: 'M16 9l-4 -4')
|
24
|
+
s.path(d: 'M8 9l4 -4')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowRightDashed < 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: 'M5 12h.5m3 0h1.5m3 0h6')
|
23
|
+
s.path(d: 'M13 18l6 -6')
|
24
|
+
s.path(d: 'M13 6l6 6')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class ArrowUpDashed < 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: 'M12 5v6m0 3v1.5m0 3v.5')
|
23
|
+
s.path(d: 'M18 11l-6 -6')
|
24
|
+
s.path(d: 'M6 11l6 -6')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -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
|