File tree Expand file tree Collapse file tree 8 files changed +119
-48
lines changed Expand file tree Collapse file tree 8 files changed +119
-48
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ import Stop from "@/components/icons/Stop";
143
143
import Support from "@/components/icons/Support" ;
144
144
import Table from "@/components/icons/Table" ;
145
145
import Taxi from "@/components/icons/Taxi" ;
146
+ import TextSlash from "@/components/icons/TextSlash" ;
146
147
import Trash from "@/components/icons/Trash" ;
147
148
import TreeStructure from "@/components/icons/TreeStructure" ;
148
149
import Underline from "@/components/icons/Underline" ;
@@ -300,6 +301,7 @@ export const ICONS_MAP = {
300
301
support : Support ,
301
302
table : Table ,
302
303
taxi : Taxi ,
304
+ "text-slash" : TextSlash ,
303
305
trash : Trash ,
304
306
"tree-structure" : TreeStructure ,
305
307
underline : Underline ,
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ export const ICON_NAMES = [
153
153
"support" ,
154
154
"table" ,
155
155
"taxi" ,
156
+ "text-slash" ,
156
157
"trash" ,
157
158
"tree-structure" ,
158
159
"upgrade" ,
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ const Bold = (props: SVGAttributes<SVGElement>) => (
12
12
< path
13
13
d = "M6.75 12H13.75C15.683 12 17.25 13.567 17.25 15.5V15.5C17.25 17.433 15.683 19 13.75 19H6.75V5H12.583C14.516 5 16.083 6.567 16.083 8.5V8.5C16.083 10.433 14.516 12 12.583 12"
14
14
stroke = "#161517"
15
- stroke-width = "2"
16
- stroke-linecap = "round"
17
- stroke-linejoin = "round"
15
+ strokeWidth = "2"
16
+ strokeLinecap = "round"
17
+ strokeLinejoin = "round"
18
18
/>
19
19
</ svg >
20
20
) ;
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ const Italic = (props: SVGAttributes<SVGElement>) => (
12
12
< path
13
13
d = "M14.1821 18H5.45508H9.43508L14.5651 6H18.5451H9.81808"
14
14
stroke = "#161517"
15
- stroke-width = "1.5"
16
- stroke-linecap = "round"
17
- stroke-linejoin = "round"
15
+ strokeWidth = "1.5"
16
+ strokeLinecap = "round"
17
+ strokeLinejoin = "round"
18
18
/>
19
19
</ svg >
20
20
) ;
Original file line number Diff line number Diff line change @@ -12,44 +12,44 @@ const ListBulleted = (props: SVGAttributes<SVGElement>) => (
12
12
< path
13
13
d = "M8.99902 6.43673H20.0036"
14
14
stroke = "#161517"
15
- stroke-width = "1.5"
16
- stroke-linecap = "round"
17
- stroke-linejoin = "round"
15
+ strokeWidth = "1.5"
16
+ strokeLinecap = "round"
17
+ strokeLinejoin = "round"
18
18
/>
19
19
< path
20
20
d = "M20.0036 12.0002H8.99902"
21
21
stroke = "#161517"
22
- stroke-width = "1.5"
23
- stroke-linecap = "round"
24
- stroke-linejoin = "round"
22
+ strokeWidth = "1.5"
23
+ strokeLinecap = "round"
24
+ strokeLinejoin = "round"
25
25
/>
26
26
< path
27
27
d = "M8.99902 17.5632H20.0036"
28
28
stroke = "#161517"
29
- stroke-width = "1.5"
30
- stroke-linecap = "round"
31
- stroke-linejoin = "round"
29
+ strokeWidth = "1.5"
30
+ strokeLinecap = "round"
31
+ strokeLinejoin = "round"
32
32
/>
33
33
< path
34
34
d = "M4.49728 5.93652C4.22102 5.93652 3.99707 6.16047 3.99707 6.43673C3.99707 6.71299 4.22102 6.93694 4.49728 6.93694C4.77354 6.93694 4.99749 6.71299 4.99749 6.43673C4.99749 6.16047 4.77354 5.93652 4.49728 5.93652"
35
35
stroke = "#161517"
36
- stroke-width = "1.5"
37
- stroke-linecap = "round"
38
- stroke-linejoin = "round"
36
+ strokeWidth = "1.5"
37
+ strokeLinecap = "round"
38
+ strokeLinejoin = "round"
39
39
/>
40
40
< path
41
41
d = "M4.49728 11.5C4.22102 11.5 3.99707 11.724 3.99707 12.0002C3.99707 12.2765 4.22102 12.5004 4.49728 12.5004C4.77354 12.5004 4.99749 12.2765 4.99749 12.0002C4.99749 11.724 4.77354 11.5 4.49728 11.5"
42
42
stroke = "#161517"
43
- stroke-width = "1.5"
44
- stroke-linecap = "round"
45
- stroke-linejoin = "round"
43
+ strokeWidth = "1.5"
44
+ strokeLinecap = "round"
45
+ strokeLinejoin = "round"
46
46
/>
47
47
< path
48
48
d = "M4.49728 17.063C4.22102 17.063 3.99707 17.2869 3.99707 17.5632C3.99707 17.8395 4.22102 18.0634 4.49728 18.0634C4.77354 18.0634 4.99749 17.8395 4.99749 17.5632C4.99749 17.2869 4.77354 17.063 4.49728 17.063"
49
49
stroke = "#161517"
50
- stroke-width = "1.5"
51
- stroke-linecap = "round"
52
- stroke-linejoin = "round"
50
+ strokeWidth = "1.5"
51
+ strokeLinecap = "round"
52
+ strokeLinejoin = "round"
53
53
/>
54
54
</ svg >
55
55
) ;
Original file line number Diff line number Diff line change @@ -12,44 +12,44 @@ const ListNumbered = (props: SVGAttributes<SVGElement>) => (
12
12
< path
13
13
d = "M11 4H20"
14
14
stroke = "#161517"
15
- stroke-width = "1.5"
16
- stroke-linecap = "round"
17
- stroke-linejoin = "round"
15
+ strokeWidth = "1.5"
16
+ strokeLinecap = "round"
17
+ strokeLinejoin = "round"
18
18
/>
19
19
< path
20
20
d = "M11.1504 9H20.0004"
21
21
stroke = "#161517"
22
- stroke-width = "1.5"
23
- stroke-linecap = "round"
24
- stroke-linejoin = "round"
22
+ strokeWidth = "1.5"
23
+ strokeLinecap = "round"
24
+ strokeLinejoin = "round"
25
25
/>
26
26
< path
27
27
d = "M6.5 9H4H5.25V4L4 5.25"
28
28
stroke = "#161517"
29
- stroke-width = "1.5"
30
- stroke-linecap = "round"
31
- stroke-linejoin = "round"
29
+ strokeWidth = "1.5"
30
+ strokeLinecap = "round"
31
+ strokeLinejoin = "round"
32
32
/>
33
33
< path
34
34
d = "M11 15H20"
35
35
stroke = "#161517"
36
- stroke-width = "1.5"
37
- stroke-linecap = "round"
38
- stroke-linejoin = "round"
36
+ strokeWidth = "1.5"
37
+ strokeLinecap = "round"
38
+ strokeLinejoin = "round"
39
39
/>
40
40
< path
41
41
d = "M11.1504 20H20.0004"
42
42
stroke = "#161517"
43
- stroke-width = "1.5"
44
- stroke-linecap = "round"
45
- stroke-linejoin = "round"
43
+ strokeWidth = "1.5"
44
+ strokeLinecap = "round"
45
+ strokeLinejoin = "round"
46
46
/>
47
47
< path
48
48
d = "M4 15H6.5V17L4 18.5V20H6.75"
49
49
stroke = "#161517"
50
- stroke-width = "1.5"
51
- stroke-linecap = "round"
52
- stroke-linejoin = "round"
50
+ strokeWidth = "1.5"
51
+ strokeLinecap = "round"
52
+ strokeLinejoin = "round"
53
53
/>
54
54
</ svg >
55
55
) ;
Original file line number Diff line number Diff line change
1
+ import { SVGAttributes } from "react" ;
2
+
3
+ const TextSlash = ( props : SVGAttributes < SVGElement > ) => (
4
+ < svg
5
+ width = "24"
6
+ height = "24"
7
+ viewBox = "0 0 24 24"
8
+ fill = "none"
9
+ xmlns = "http://www.w3.org/2000/svg"
10
+ { ...props }
11
+ >
12
+ < g clip-path = "url(#clip0_12066_12491)" >
13
+ < path
14
+ d = "M4.5 3.75L19.5 20.25"
15
+ stroke = "#161517"
16
+ strokeWidth = "1.5"
17
+ strokeLinecap = "round"
18
+ strokeLinejoin = "round"
19
+ />
20
+ < path
21
+ d = "M9 18.75H15"
22
+ stroke = "#161517"
23
+ strokeWidth = "1.5"
24
+ strokeLinecap = "round"
25
+ strokeLinejoin = "round"
26
+ />
27
+ < path
28
+ d = "M12 12V18.75"
29
+ stroke = "#161517"
30
+ strokeWidth = "1.5"
31
+ strokeLinecap = "round"
32
+ strokeLinejoin = "round"
33
+ />
34
+ < path
35
+ d = "M12 5.25V7.54031"
36
+ stroke = "#161517"
37
+ strokeWidth = "1.5"
38
+ strokeLinecap = "round"
39
+ strokeLinejoin = "round"
40
+ />
41
+ < path
42
+ d = "M9.91797 5.25H18.7502V8.25"
43
+ stroke = "#161517"
44
+ strokeWidth = "1.5"
45
+ strokeLinecap = "round"
46
+ strokeLinejoin = "round"
47
+ />
48
+ < path
49
+ d = "M5.25 8.25V5.25H5.86406"
50
+ stroke = "#161517"
51
+ strokeWidth = "1.5"
52
+ strokeLinecap = "round"
53
+ strokeLinejoin = "round"
54
+ />
55
+ </ g >
56
+ < defs >
57
+ < clipPath id = "clip0_12066_12491" >
58
+ < rect
59
+ width = "24"
60
+ height = "24"
61
+ fill = "white"
62
+ />
63
+ </ clipPath >
64
+ </ defs >
65
+ </ svg >
66
+ ) ;
67
+
68
+ export default TextSlash ;
Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ const Underline = (props: SVGAttributes<SVGElement>) => (
12
12
< path
13
13
d = "M6 20H18"
14
14
stroke = "#161517"
15
- stroke-width = "1.5"
16
- stroke-linecap = "round"
17
- stroke-linejoin = "round"
15
+ strokeWidth = "1.5"
16
+ strokeLinecap = "round"
17
+ strokeLinejoin = "round"
18
18
/>
19
19
< path
20
20
d = "M17 4V11C17 13.761 14.761 16 12 16C9.239 16 7 13.761 7 11V4"
21
21
stroke = "#161517"
22
- stroke-width = "1.5"
23
- stroke-linecap = "round"
24
- stroke-linejoin = "round"
22
+ strokeWidth = "1.5"
23
+ strokeLinecap = "round"
24
+ strokeLinejoin = "round"
25
25
/>
26
26
</ svg >
27
27
) ;
You can’t perform that action at this time.
0 commit comments