phlex-icons-tabler 1.6.0 → 1.7.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/alarm_smoke.rb +48 -0
- data/lib/phlex/icons/tabler/assembly.rb +1 -1
- data/lib/phlex/icons/tabler/assembly_off.rb +2 -2
- data/lib/phlex/icons/tabler/badge_2k.rb +38 -0
- data/lib/phlex/icons/tabler/badge_3k.rb +38 -0
- data/lib/phlex/icons/tabler/badge_5k.rb +35 -0
- data/lib/phlex/icons/tabler/badge_8k.rb +2 -2
- data/lib/phlex/icons/tabler/blocks.rb +35 -0
- data/lib/phlex/icons/tabler/bowling.rb +38 -0
- data/lib/phlex/icons/tabler/browser.rb +3 -3
- data/lib/phlex/icons/tabler/browser_maximize.rb +34 -0
- data/lib/phlex/icons/tabler/browser_minus.rb +31 -0
- data/lib/phlex/icons/tabler/browser_plus.rb +3 -6
- data/lib/phlex/icons/tabler/browser_share.rb +34 -0
- data/lib/phlex/icons/tabler/calendar_event.rb +14 -1
- data/lib/phlex/icons/tabler/calendar_month.rb +30 -3
- data/lib/phlex/icons/tabler/calendar_week.rb +16 -1
- data/lib/phlex/icons/tabler/candle.rb +4 -4
- data/lib/phlex/icons/tabler/code_variable.rb +31 -0
- data/lib/phlex/icons/tabler/code_variable_minus.rb +31 -0
- data/lib/phlex/icons/tabler/code_variable_plus.rb +30 -0
- data/lib/phlex/icons/tabler/uhd.rb +32 -0
- data/lib/phlex/icons/tabler/wheat.rb +42 -0
- data/lib/phlex/icons/tabler/wheat_off.rb +48 -0
- data/lib/phlex/icons/tabler.rb +16 -1
- data/lib/phlex/icons/version.rb +1 -1
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f537a1073685f1dbd84beaf043693339885286c14c8c32ab41ce05b8ad499b85
|
4
|
+
data.tar.gz: 9717a152c0ccf3c3087d8c10fc316c5c9f576222b07136fc4903f2ca5e0ef9a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4d60b711646f74f39ef60a079f4899b7151809ddc6f2e60e06571cd0aee812125874a2345d49d86a7afb0717211114ead732394d4ee97e294d8d11a6a415644
|
7
|
+
data.tar.gz: 76c2919c7010c7b2e8a7c151b4d1d0e570bd735c434f44e0c2e492572daf58487f3c2266f235942d225392fc1ea1b6b696fcd60a1a7dd495827f62c96aa7a714
|
@@ -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 AlarmSmoke < 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: 'M18 8l-.8 3a1.25 1.25 0 0 1 -1.2 1h-8a1.25 1.25 0 0 1 -1.2 -1l-.8 -3'
|
25
|
+
)
|
26
|
+
s.path(
|
27
|
+
d:
|
28
|
+
'M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z'
|
29
|
+
)
|
30
|
+
s.path(
|
31
|
+
d:
|
32
|
+
'M12 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25'
|
33
|
+
)
|
34
|
+
s.path(
|
35
|
+
d:
|
36
|
+
'M7 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25'
|
37
|
+
)
|
38
|
+
s.path(
|
39
|
+
d:
|
40
|
+
'M17 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25'
|
41
|
+
)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
# rubocop:enable Layout/LineLength
|
@@ -32,7 +32,7 @@ module Phlex
|
|
32
32
|
) do |s|
|
33
33
|
s.path(
|
34
34
|
d:
|
35
|
-
'M19.875 6.
|
35
|
+
'M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.27 2.27 0 0 1 -2.184 0l-6.75 -4.27a2.23 2.23 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98z'
|
36
36
|
)
|
37
37
|
s.path(
|
38
38
|
d:
|
@@ -22,11 +22,11 @@ module Phlex
|
|
22
22
|
) do |s|
|
23
23
|
s.path(
|
24
24
|
d:
|
25
|
-
'
|
25
|
+
'M18.376 18.377l-5.284 3.343a2.27 2.27 0 0 1 -2.184 0l-6.75 -4.27a2.23 2.23 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l1.328 -.783m2.514 -1.487l2.908 -1.71a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .417 -.118 .817 -.33 1.16'
|
26
26
|
)
|
27
27
|
s.path(
|
28
28
|
d:
|
29
|
-
'
|
29
|
+
'M14.855 14.855l-2.37 1.519a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.563 -.336m2.437 -1.454a1.03 1.03 0 0 1 1 0l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702'
|
30
30
|
)
|
31
31
|
s.path(d: 'M3 3l18 18')
|
32
32
|
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class Badge2k < 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(
|
23
|
+
d:
|
24
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
25
|
+
)
|
26
|
+
s.path(d: 'M14 9v6')
|
27
|
+
s.path(d: 'M17 9l-2 3l2 3')
|
28
|
+
s.path(d: 'M15 12h-1')
|
29
|
+
s.path(
|
30
|
+
d:
|
31
|
+
'M7 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2'
|
32
|
+
)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class Badge3k < 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(
|
23
|
+
d:
|
24
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
25
|
+
)
|
26
|
+
s.path(d: 'M14 9v6')
|
27
|
+
s.path(d: 'M17 9l-2 3l2 3')
|
28
|
+
s.path(d: 'M15 12h-1')
|
29
|
+
s.path(
|
30
|
+
d:
|
31
|
+
'M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5'
|
32
|
+
)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class Badge5k < 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(
|
23
|
+
d:
|
24
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
25
|
+
)
|
26
|
+
s.path(d: 'M14 9v6')
|
27
|
+
s.path(d: 'M17 9l-2 3l2 3')
|
28
|
+
s.path(d: 'M15 12h-1')
|
29
|
+
s.path(d: 'M7 15h2a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3')
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -32,14 +32,14 @@ module Phlex
|
|
32
32
|
) do |s|
|
33
33
|
s.path(
|
34
34
|
d:
|
35
|
-
'M3
|
35
|
+
'M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
|
36
36
|
)
|
37
37
|
s.path(d: 'M14 9v6')
|
38
38
|
s.path(d: 'M17 9l-2 3l2 3')
|
39
39
|
s.path(d: 'M15 12h-1')
|
40
40
|
s.path(
|
41
41
|
d:
|
42
|
-
'M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1
|
42
|
+
'M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1zh-.5a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1'
|
43
43
|
)
|
44
44
|
end
|
45
45
|
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class Blocks < 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(
|
23
|
+
d:
|
24
|
+
'M14 4a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z'
|
25
|
+
)
|
26
|
+
s.path(
|
27
|
+
d:
|
28
|
+
'M3 14h12a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h3a2 2 0 0 1 2 2v12'
|
29
|
+
)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module Phlex
|
5
|
+
module Icons
|
6
|
+
module Tabler
|
7
|
+
class Bowling < 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: 'M7 11v.01')
|
24
|
+
s.path(d: 'M11 10v.01')
|
25
|
+
s.path(d: 'M10 14v.01')
|
26
|
+
s.path(d: 'M11.059 6.07a8 8 0 1 0 .32 15.81')
|
27
|
+
s.path(d: 'M15.969 9h4')
|
28
|
+
s.path(
|
29
|
+
d:
|
30
|
+
'M14.969 5c0 1.5 1 2 1 4c0 2.5 -2 4.5 -2 7c0 2.6 1.9 6 1.9 6h4.1s2 -3.4 2 -6c0 -2.5 -2 -4.5 -2 -7c0 -2 1 -2.5 1 -4a3 3 0 1 0 -6 0'
|
31
|
+
)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
# rubocop:enable Layout/LineLength
|
@@ -19,12 +19,12 @@ module Phlex
|
|
19
19
|
stroke_linecap: 'round',
|
20
20
|
stroke_linejoin: 'round'
|
21
21
|
) do |s|
|
22
|
+
s.path(d: 'M4 8h16')
|
22
23
|
s.path(
|
23
24
|
d:
|
24
|
-
'M4 4m0
|
25
|
+
'M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z'
|
25
26
|
)
|
26
|
-
s.path(d: '
|
27
|
-
s.path(d: 'M8 4l0 4')
|
27
|
+
s.path(d: 'M8 4v4')
|
28
28
|
end
|
29
29
|
end
|
30
30
|
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class BrowserMaximize < 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: 'M4 8h8')
|
23
|
+
s.path(
|
24
|
+
d: 'M20 11.5v6.5a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6.5'
|
25
|
+
)
|
26
|
+
s.path(d: 'M8 4v4')
|
27
|
+
s.path(d: 'M16 8l5 -5')
|
28
|
+
s.path(d: 'M21 7.5v-4.5h-4.5')
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class BrowserMinus < 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: 'M4 8h16')
|
23
|
+
s.path(d: 'M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9')
|
24
|
+
s.path(d: 'M8 4v4')
|
25
|
+
s.path(d: 'M16 19h6')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -19,14 +19,11 @@ module Phlex
|
|
19
19
|
stroke_linecap: 'round',
|
20
20
|
stroke_linejoin: 'round'
|
21
21
|
) do |s|
|
22
|
-
s.path(
|
23
|
-
d:
|
24
|
-
'M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z'
|
25
|
-
)
|
26
22
|
s.path(d: 'M4 8h16')
|
23
|
+
s.path(d: 'M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6')
|
27
24
|
s.path(d: 'M8 4v4')
|
28
|
-
s.path(d: '
|
29
|
-
s.path(d: '
|
25
|
+
s.path(d: 'M16 19h6')
|
26
|
+
s.path(d: 'M19 16v6')
|
30
27
|
end
|
31
28
|
end
|
32
29
|
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class BrowserShare < 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: 'M4 8h16')
|
23
|
+
s.path(
|
24
|
+
d: 'M12.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7'
|
25
|
+
)
|
26
|
+
s.path(d: 'M8 4v4')
|
27
|
+
s.path(d: 'M16 22l5 -5')
|
28
|
+
s.path(d: 'M21 21.5v-4.5h-4.5')
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -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 CalendarEvent < 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 2a1 1 0 0 1 .993 .883l.007 .117v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z'
|
18
|
+
)
|
19
|
+
s.path(d: 'M8 14h2v2h-2z')
|
20
|
+
end
|
9
21
|
end
|
10
22
|
|
11
23
|
def outline
|
@@ -33,3 +45,4 @@ module Phlex
|
|
33
45
|
end
|
34
46
|
end
|
35
47
|
end
|
48
|
+
# rubocop:enable Layout/LineLength
|
@@ -1,12 +1,39 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# rubocop:disable Metrics/MethodLength
|
3
|
+
# rubocop:disable Layout/LineLength,Metrics/MethodLength
|
4
4
|
module Phlex
|
5
5
|
module Icons
|
6
6
|
module Tabler
|
7
7
|
class CalendarMonth < 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
|
+
'M16 2c.183 0 .355 .05 .502 .135l.033 .02c.28 .177 .465 .49 .465 .845v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 .514 -.874l.093 -.046l.066 -.025l.1 -.029l.107 -.019l.12 -.007q .083 0 .161 .013l.122 .029l.04 .012l.06 .023c.328 .135 .568 .44 .61 .806l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z'
|
18
|
+
)
|
19
|
+
s.path(
|
20
|
+
d:
|
21
|
+
'M9.015 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
22
|
+
)
|
23
|
+
s.path(
|
24
|
+
d:
|
25
|
+
'M13.015 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
26
|
+
)
|
27
|
+
s.path(
|
28
|
+
d:
|
29
|
+
'M17.02 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
30
|
+
)
|
31
|
+
s.path(d: 'M12.02 15a1 1 0 0 1 0 2a1.001 1.001 0 1 1 -.005 -2z')
|
32
|
+
s.path(
|
33
|
+
d:
|
34
|
+
'M9.015 16a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1'
|
35
|
+
)
|
36
|
+
end
|
10
37
|
end
|
11
38
|
|
12
39
|
def outline
|
@@ -40,4 +67,4 @@ module Phlex
|
|
40
67
|
end
|
41
68
|
end
|
42
69
|
end
|
43
|
-
# rubocop:enable Metrics/MethodLength
|
70
|
+
# rubocop:enable Layout/LineLength,Metrics/MethodLength
|
@@ -1,11 +1,25 @@
|
|
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 CalendarWeek < 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: 'M8 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1')
|
16
|
+
s.path(d: 'M12 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1')
|
17
|
+
s.path(d: 'M16 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1')
|
18
|
+
s.path(
|
19
|
+
d:
|
20
|
+
'M16 2a1 1 0 0 1 .993 .883l.007 .117v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z'
|
21
|
+
)
|
22
|
+
end
|
9
23
|
end
|
10
24
|
|
11
25
|
def outline
|
@@ -35,3 +49,4 @@ module Phlex
|
|
35
49
|
end
|
36
50
|
end
|
37
51
|
end
|
52
|
+
# rubocop:enable Layout/LineLength
|
@@ -14,11 +14,11 @@ module Phlex
|
|
14
14
|
) do |s|
|
15
15
|
s.path(
|
16
16
|
d:
|
17
|
-
'M14
|
17
|
+
'M14 9a2 2 0 0 1 2 2v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10a2 2 0 0 1 2 -2z'
|
18
18
|
)
|
19
19
|
s.path(
|
20
20
|
d:
|
21
|
-
'M11.254
|
21
|
+
'M11.254 1.334a1 1 0 0 1 1.491 0l1.452 1.623a3 3 0 0 1 -4.196 4.28c-1.195 -1.07 -1.339 -2.889 -.297 -4.166z'
|
22
22
|
)
|
23
23
|
end
|
24
24
|
end
|
@@ -34,8 +34,8 @@ module Phlex
|
|
34
34
|
stroke_linecap: 'round',
|
35
35
|
stroke_linejoin: 'round'
|
36
36
|
) do |s|
|
37
|
-
s.path(d: 'M9 21h6v-
|
38
|
-
s.path(d: 'M12
|
37
|
+
s.path(d: 'M9 21h6v-10a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1z')
|
38
|
+
s.path(d: 'M12 2l1.465 1.638a2 2 0 1 1 -3.015 .099z')
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class CodeVariable < 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(
|
23
|
+
d:
|
24
|
+
'M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z'
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class CodeVariableMinus < 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(
|
23
|
+
d: 'M12.5 16h-6.5a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4'
|
24
|
+
)
|
25
|
+
s.path(d: 'M16 18h6')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class CodeVariablePlus < 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: 'M13 16h-7a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v1')
|
23
|
+
s.path(d: 'M16 18h6')
|
24
|
+
s.path(d: 'M19 15v6')
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Icons
|
5
|
+
module Tabler
|
6
|
+
class Uhd < 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: 'M10 16v-8')
|
23
|
+
s.path(d: 'M10 12h4')
|
24
|
+
s.path(d: 'M14 8v8')
|
25
|
+
s.path(d: 'M17 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z')
|
26
|
+
s.path(d: 'M3 8v6a2 2 0 1 0 4 0v-6')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
module Phlex
|
5
|
+
module Icons
|
6
|
+
module Tabler
|
7
|
+
class Wheat < 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: 'M12.014 21.514v-3.75')
|
24
|
+
s.path(
|
25
|
+
d:
|
26
|
+
'M5.93 9.504l-.43 1.604c-.712 2.659 .866 5.391 3.524 6.105c.997 .268 1.993 .535 2.99 .801v-3.44c-.164 -2.105 -1.637 -3.879 -3.676 -4.426l-2.408 -.644z'
|
27
|
+
)
|
28
|
+
s.path(
|
29
|
+
d:
|
30
|
+
'M13.744 11.164c.454 -.454 .815 -.994 1.061 -1.587c.246 -.594 .372 -1.23 .372 -1.873c0 -.643 -.126 -1.279 -.372 -1.872c-.246 -.594 -.606 -1.133 -1.061 -1.588l-1.73 -1.73l-1.73 1.73c-.454 .454 -.815 .994 -1.06 1.588c-.246 .594 -.372 1.23 -.373 1.872c0 .643 .127 1.279 .373 1.873c.246 .594 .606 1.133 1.06 1.587'
|
31
|
+
)
|
32
|
+
s.path(
|
33
|
+
d:
|
34
|
+
'M18.099 9.504l.43 1.604c.712 2.659 -.866 5.391 -3.525 6.105c-.997 .268 -1.994 .535 -2.99 .801v-3.44c.164 -2.105 1.637 -3.879 3.677 -4.426l2.408 -.644z'
|
35
|
+
)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
# rubocop:enable Layout/LineLength
|
@@ -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 WheatOff < 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 3l18 18')
|
24
|
+
s.path(d: 'M12 21.5v-3.75')
|
25
|
+
s.path(
|
26
|
+
d:
|
27
|
+
'M5.916 9.49l-.43 1.604c-.712 2.659 .866 5.392 3.524 6.104c.997 .268 1.994 .535 2.99 .802v-3.44c-.164 -2.105 -1.637 -3.879 -3.677 -4.426l-2.407 -.644z'
|
28
|
+
)
|
29
|
+
s.path(d: 'M10.249 4.251c.007 -.007 .014 -.014 .021 -.021l1.73 -1.73')
|
30
|
+
s.path(d: 'M10.27 11.15c-.589 -.589 -1.017 -1.318 -1.246 -2.118')
|
31
|
+
s.path(
|
32
|
+
d:
|
33
|
+
'M14.988 8.988c.229 -.834 .234 -1.713 .013 -2.549c-.221 -.836 -.659 -1.598 -1.271 -2.209l-1.73 -1.73'
|
34
|
+
)
|
35
|
+
s.path(
|
36
|
+
d: 'M16.038 10.037l2.046 -.547l.431 1.604c.142 .53 .193 1.063 .162 1.583'
|
37
|
+
)
|
38
|
+
s.path(
|
39
|
+
d:
|
40
|
+
'M16.506 16.505c-.45 .307 -.959 .544 -1.516 .694c-.997 .268 -1.994 .535 -2.99 .801v-3.44c.055 -.708 .259 -1.379 .582 -1.978'
|
41
|
+
)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
# rubocop:enable Layout/LineLength
|
data/lib/phlex/icons/tabler.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
module Phlex
|
4
4
|
module Icons
|
5
5
|
module Tabler # rubocop:disable Metrics/ModuleLength
|
6
|
-
VERSION = '3.
|
6
|
+
VERSION = '3.23.0'
|
7
7
|
VARIANTS = %i[outline filled].freeze
|
8
8
|
|
9
9
|
extend Phlex::Kit
|
@@ -67,6 +67,7 @@ module Phlex
|
|
67
67
|
autoload :AlarmMinus, 'phlex/icons/tabler/alarm_minus'
|
68
68
|
autoload :AlarmOff, 'phlex/icons/tabler/alarm_off'
|
69
69
|
autoload :AlarmPlus, 'phlex/icons/tabler/alarm_plus'
|
70
|
+
autoload :AlarmSmoke, 'phlex/icons/tabler/alarm_smoke'
|
70
71
|
autoload :AlarmSnooze, 'phlex/icons/tabler/alarm_snooze'
|
71
72
|
autoload :Album, 'phlex/icons/tabler/album'
|
72
73
|
autoload :AlbumOff, 'phlex/icons/tabler/album_off'
|
@@ -369,8 +370,11 @@ module Phlex
|
|
369
370
|
autoload :Backslash, 'phlex/icons/tabler/backslash'
|
370
371
|
autoload :Backspace, 'phlex/icons/tabler/backspace'
|
371
372
|
autoload :Badge, 'phlex/icons/tabler/badge'
|
373
|
+
autoload :Badge2k, 'phlex/icons/tabler/badge_2k'
|
372
374
|
autoload :Badge3d, 'phlex/icons/tabler/badge_3d'
|
375
|
+
autoload :Badge3k, 'phlex/icons/tabler/badge_3k'
|
373
376
|
autoload :Badge4k, 'phlex/icons/tabler/badge_4k'
|
377
|
+
autoload :Badge5k, 'phlex/icons/tabler/badge_5k'
|
374
378
|
autoload :Badge8k, 'phlex/icons/tabler/badge_8k'
|
375
379
|
autoload :BadgeAd, 'phlex/icons/tabler/badge_ad'
|
376
380
|
autoload :BadgeAdOff, 'phlex/icons/tabler/badge_ad_off'
|
@@ -513,6 +517,7 @@ module Phlex
|
|
513
517
|
autoload :Blender, 'phlex/icons/tabler/blender'
|
514
518
|
autoload :Blob, 'phlex/icons/tabler/blob'
|
515
519
|
autoload :Blockquote, 'phlex/icons/tabler/blockquote'
|
520
|
+
autoload :Blocks, 'phlex/icons/tabler/blocks'
|
516
521
|
autoload :Bluetooth, 'phlex/icons/tabler/bluetooth'
|
517
522
|
autoload :BluetoothConnected, 'phlex/icons/tabler/bluetooth_connected'
|
518
523
|
autoload :BluetoothOff, 'phlex/icons/tabler/bluetooth_off'
|
@@ -578,6 +583,7 @@ module Phlex
|
|
578
583
|
autoload :Bowl, 'phlex/icons/tabler/bowl'
|
579
584
|
autoload :BowlChopsticks, 'phlex/icons/tabler/bowl_chopsticks'
|
580
585
|
autoload :BowlSpoon, 'phlex/icons/tabler/bowl_spoon'
|
586
|
+
autoload :Bowling, 'phlex/icons/tabler/bowling'
|
581
587
|
autoload :Box, 'phlex/icons/tabler/box'
|
582
588
|
autoload :BoxAlignBottom, 'phlex/icons/tabler/box_align_bottom'
|
583
589
|
autoload :BoxAlignBottomLeft, 'phlex/icons/tabler/box_align_bottom_left'
|
@@ -1000,8 +1006,11 @@ module Phlex
|
|
1000
1006
|
autoload :BroadcastOff, 'phlex/icons/tabler/broadcast_off'
|
1001
1007
|
autoload :Browser, 'phlex/icons/tabler/browser'
|
1002
1008
|
autoload :BrowserCheck, 'phlex/icons/tabler/browser_check'
|
1009
|
+
autoload :BrowserMaximize, 'phlex/icons/tabler/browser_maximize'
|
1010
|
+
autoload :BrowserMinus, 'phlex/icons/tabler/browser_minus'
|
1003
1011
|
autoload :BrowserOff, 'phlex/icons/tabler/browser_off'
|
1004
1012
|
autoload :BrowserPlus, 'phlex/icons/tabler/browser_plus'
|
1013
|
+
autoload :BrowserShare, 'phlex/icons/tabler/browser_share'
|
1005
1014
|
autoload :BrowserX, 'phlex/icons/tabler/browser_x'
|
1006
1015
|
autoload :Brush, 'phlex/icons/tabler/brush'
|
1007
1016
|
autoload :BrushOff, 'phlex/icons/tabler/brush_off'
|
@@ -1546,6 +1555,9 @@ module Phlex
|
|
1546
1555
|
autoload :CodeMinus, 'phlex/icons/tabler/code_minus'
|
1547
1556
|
autoload :CodeOff, 'phlex/icons/tabler/code_off'
|
1548
1557
|
autoload :CodePlus, 'phlex/icons/tabler/code_plus'
|
1558
|
+
autoload :CodeVariable, 'phlex/icons/tabler/code_variable'
|
1559
|
+
autoload :CodeVariableMinus, 'phlex/icons/tabler/code_variable_minus'
|
1560
|
+
autoload :CodeVariablePlus, 'phlex/icons/tabler/code_variable_plus'
|
1549
1561
|
autoload :Coffee, 'phlex/icons/tabler/coffee'
|
1550
1562
|
autoload :CoffeeOff, 'phlex/icons/tabler/coffee_off'
|
1551
1563
|
autoload :Coffin, 'phlex/icons/tabler/coffin'
|
@@ -4658,6 +4670,7 @@ module Phlex
|
|
4658
4670
|
autoload :UTurnRight, 'phlex/icons/tabler/u_turn_right'
|
4659
4671
|
autoload :Ufo, 'phlex/icons/tabler/ufo'
|
4660
4672
|
autoload :UfoOff, 'phlex/icons/tabler/ufo_off'
|
4673
|
+
autoload :Uhd, 'phlex/icons/tabler/uhd'
|
4661
4674
|
autoload :Umbrella, 'phlex/icons/tabler/umbrella'
|
4662
4675
|
autoload :Umbrella2, 'phlex/icons/tabler/umbrella_2'
|
4663
4676
|
autoload :UmbrellaClosed, 'phlex/icons/tabler/umbrella_closed'
|
@@ -4802,6 +4815,8 @@ module Phlex
|
|
4802
4815
|
autoload :Webhook, 'phlex/icons/tabler/webhook'
|
4803
4816
|
autoload :WebhookOff, 'phlex/icons/tabler/webhook_off'
|
4804
4817
|
autoload :Weight, 'phlex/icons/tabler/weight'
|
4818
|
+
autoload :Wheat, 'phlex/icons/tabler/wheat'
|
4819
|
+
autoload :WheatOff, 'phlex/icons/tabler/wheat_off'
|
4805
4820
|
autoload :Wheel, 'phlex/icons/tabler/wheel'
|
4806
4821
|
autoload :Wheelchair, 'phlex/icons/tabler/wheelchair'
|
4807
4822
|
autoload :WheelchairOff, 'phlex/icons/tabler/wheelchair_off'
|
data/lib/phlex/icons/version.rb
CHANGED
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.
|
4
|
+
version: 1.7.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-11-
|
11
|
+
date: 2024-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -108,6 +108,7 @@ files:
|
|
108
108
|
- lib/phlex/icons/tabler/alarm_minus.rb
|
109
109
|
- lib/phlex/icons/tabler/alarm_off.rb
|
110
110
|
- lib/phlex/icons/tabler/alarm_plus.rb
|
111
|
+
- lib/phlex/icons/tabler/alarm_smoke.rb
|
111
112
|
- lib/phlex/icons/tabler/alarm_snooze.rb
|
112
113
|
- lib/phlex/icons/tabler/album.rb
|
113
114
|
- lib/phlex/icons/tabler/album_off.rb
|
@@ -410,8 +411,11 @@ files:
|
|
410
411
|
- lib/phlex/icons/tabler/backslash.rb
|
411
412
|
- lib/phlex/icons/tabler/backspace.rb
|
412
413
|
- lib/phlex/icons/tabler/badge.rb
|
414
|
+
- lib/phlex/icons/tabler/badge_2k.rb
|
413
415
|
- lib/phlex/icons/tabler/badge_3d.rb
|
416
|
+
- lib/phlex/icons/tabler/badge_3k.rb
|
414
417
|
- lib/phlex/icons/tabler/badge_4k.rb
|
418
|
+
- lib/phlex/icons/tabler/badge_5k.rb
|
415
419
|
- lib/phlex/icons/tabler/badge_8k.rb
|
416
420
|
- lib/phlex/icons/tabler/badge_ad.rb
|
417
421
|
- lib/phlex/icons/tabler/badge_ad_off.rb
|
@@ -555,6 +559,7 @@ files:
|
|
555
559
|
- lib/phlex/icons/tabler/blender.rb
|
556
560
|
- lib/phlex/icons/tabler/blob.rb
|
557
561
|
- lib/phlex/icons/tabler/blockquote.rb
|
562
|
+
- lib/phlex/icons/tabler/blocks.rb
|
558
563
|
- lib/phlex/icons/tabler/bluetooth.rb
|
559
564
|
- lib/phlex/icons/tabler/bluetooth_connected.rb
|
560
565
|
- lib/phlex/icons/tabler/bluetooth_off.rb
|
@@ -620,6 +625,7 @@ files:
|
|
620
625
|
- lib/phlex/icons/tabler/bowl.rb
|
621
626
|
- lib/phlex/icons/tabler/bowl_chopsticks.rb
|
622
627
|
- lib/phlex/icons/tabler/bowl_spoon.rb
|
628
|
+
- lib/phlex/icons/tabler/bowling.rb
|
623
629
|
- lib/phlex/icons/tabler/box.rb
|
624
630
|
- lib/phlex/icons/tabler/box_align_bottom.rb
|
625
631
|
- lib/phlex/icons/tabler/box_align_bottom_left.rb
|
@@ -1042,8 +1048,11 @@ files:
|
|
1042
1048
|
- lib/phlex/icons/tabler/broadcast_off.rb
|
1043
1049
|
- lib/phlex/icons/tabler/browser.rb
|
1044
1050
|
- lib/phlex/icons/tabler/browser_check.rb
|
1051
|
+
- lib/phlex/icons/tabler/browser_maximize.rb
|
1052
|
+
- lib/phlex/icons/tabler/browser_minus.rb
|
1045
1053
|
- lib/phlex/icons/tabler/browser_off.rb
|
1046
1054
|
- lib/phlex/icons/tabler/browser_plus.rb
|
1055
|
+
- lib/phlex/icons/tabler/browser_share.rb
|
1047
1056
|
- lib/phlex/icons/tabler/browser_x.rb
|
1048
1057
|
- lib/phlex/icons/tabler/brush.rb
|
1049
1058
|
- lib/phlex/icons/tabler/brush_off.rb
|
@@ -1588,6 +1597,9 @@ files:
|
|
1588
1597
|
- lib/phlex/icons/tabler/code_minus.rb
|
1589
1598
|
- lib/phlex/icons/tabler/code_off.rb
|
1590
1599
|
- lib/phlex/icons/tabler/code_plus.rb
|
1600
|
+
- lib/phlex/icons/tabler/code_variable.rb
|
1601
|
+
- lib/phlex/icons/tabler/code_variable_minus.rb
|
1602
|
+
- lib/phlex/icons/tabler/code_variable_plus.rb
|
1591
1603
|
- lib/phlex/icons/tabler/coffee.rb
|
1592
1604
|
- lib/phlex/icons/tabler/coffee_off.rb
|
1593
1605
|
- lib/phlex/icons/tabler/coffin.rb
|
@@ -4701,6 +4713,7 @@ files:
|
|
4701
4713
|
- lib/phlex/icons/tabler/u_turn_right.rb
|
4702
4714
|
- lib/phlex/icons/tabler/ufo.rb
|
4703
4715
|
- lib/phlex/icons/tabler/ufo_off.rb
|
4716
|
+
- lib/phlex/icons/tabler/uhd.rb
|
4704
4717
|
- lib/phlex/icons/tabler/umbrella.rb
|
4705
4718
|
- lib/phlex/icons/tabler/umbrella_2.rb
|
4706
4719
|
- lib/phlex/icons/tabler/umbrella_closed.rb
|
@@ -4845,6 +4858,8 @@ files:
|
|
4845
4858
|
- lib/phlex/icons/tabler/webhook.rb
|
4846
4859
|
- lib/phlex/icons/tabler/webhook_off.rb
|
4847
4860
|
- lib/phlex/icons/tabler/weight.rb
|
4861
|
+
- lib/phlex/icons/tabler/wheat.rb
|
4862
|
+
- lib/phlex/icons/tabler/wheat_off.rb
|
4848
4863
|
- lib/phlex/icons/tabler/wheel.rb
|
4849
4864
|
- lib/phlex/icons/tabler/wheelchair.rb
|
4850
4865
|
- lib/phlex/icons/tabler/wheelchair_off.rb
|