@xipkg/icons 0.0.3
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.
- package/.turbo/turbo-build.log +14 -0
- package/config.ts +69 -0
- package/dist/index.d.ts +162 -0
- package/dist/index.js +1134 -0
- package/index.ts +143 -0
- package/package.json +33 -0
- package/src/Account.tsx +11 -0
- package/src/Activity.tsx +11 -0
- package/src/Add.tsx +11 -0
- package/src/AddCategory.tsx +8 -0
- package/src/AddChannel.tsx +8 -0
- package/src/Announce.tsx +11 -0
- package/src/Arrow.tsx +13 -0
- package/src/Bold.tsx +11 -0
- package/src/Burger.tsx +11 -0
- package/src/Calendar.tsx +11 -0
- package/src/Camera.tsx +11 -0
- package/src/Chat.tsx +8 -0
- package/src/Check.tsx +11 -0
- package/src/Cite.tsx +11 -0
- package/src/Clip.tsx +11 -0
- package/src/Clock.tsx +11 -0
- package/src/Close.tsx +11 -0
- package/src/Code.tsx +8 -0
- package/src/Copy.tsx +11 -0
- package/src/Download.tsx +11 -0
- package/src/Emotions.tsx +11 -0
- package/src/Endcall.tsx +11 -0
- package/src/Exit.tsx +11 -0
- package/src/External.tsx +8 -0
- package/src/Eyeoff.tsx +8 -0
- package/src/Eyeon.tsx +8 -0
- package/src/File.tsx +11 -0
- package/src/Flag.tsx +11 -0
- package/src/Folder.tsx +11 -0
- package/src/Food.tsx +11 -0
- package/src/Grid.tsx +11 -0
- package/src/H1.tsx +11 -0
- package/src/H2.tsx +11 -0
- package/src/H3.tsx +11 -0
- package/src/Hand.tsx +8 -0
- package/src/Heart.tsx +11 -0
- package/src/Home.tsx +11 -0
- package/src/Invite.tsx +14 -0
- package/src/Italic.tsx +11 -0
- package/src/Link.tsx +11 -0
- package/src/Maximize.tsx +8 -0
- package/src/Microphone.tsx +8 -0
- package/src/Minus.tsx +11 -0
- package/src/Move.tsx +14 -0
- package/src/Movie.tsx +14 -0
- package/src/Music.tsx +14 -0
- package/src/Nature.tsx +11 -0
- package/src/Notification.tsx +11 -0
- package/src/Objects.tsx +11 -0
- package/src/Ol.tsx +11 -0
- package/src/Palette.tsx +14 -0
- package/src/Photo.tsx +8 -0
- package/src/Picture.tsx +14 -0
- package/src/Places.tsx +11 -0
- package/src/Play.tsx +11 -0
- package/src/Screenshare.tsx +8 -0
- package/src/Search.tsx +11 -0
- package/src/Send.tsx +11 -0
- package/src/Settings.tsx +11 -0
- package/src/Shape.tsx +12 -0
- package/src/Stroke.tsx +11 -0
- package/src/Task.tsx +11 -0
- package/src/Text.tsx +11 -0
- package/src/Trash.tsx +8 -0
- package/src/Ul.tsx +11 -0
- package/src/Underline.tsx +11 -0
- package/src/Updates.tsx +11 -0
- package/src/Users.tsx +8 -0
- package/tsconfig.json +5 -0
- package/types.tsx +3 -0
package/index.ts
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { Account } from './src/Account';
|
|
2
|
+
import { Activity } from './src/Activity';
|
|
3
|
+
import { Add } from './src/Add';
|
|
4
|
+
import { AddCategory } from './src/AddCategory';
|
|
5
|
+
import { AddChannel } from './src/AddChannel';
|
|
6
|
+
import { Announce } from './src/Announce';
|
|
7
|
+
import { Arrow } from './src/Arrow';
|
|
8
|
+
import { Bold } from './src/Bold';
|
|
9
|
+
import { Burger } from './src/Burger';
|
|
10
|
+
import { Calendar } from './src/Calendar';
|
|
11
|
+
import { Camera } from './src/Camera';
|
|
12
|
+
import { Chat } from './src/Chat';
|
|
13
|
+
import { Check } from './src/Check';
|
|
14
|
+
import { Cite } from './src/Cite';
|
|
15
|
+
import { Clip } from './src/Clip';
|
|
16
|
+
import { Clock } from './src/Clock';
|
|
17
|
+
import { Close } from './src/Close';
|
|
18
|
+
import { Code } from './src/Code';
|
|
19
|
+
import { Copy } from './src/Copy';
|
|
20
|
+
import { Download } from './src/Download';
|
|
21
|
+
import { Emotions } from './src/Emotions';
|
|
22
|
+
import { Endcall } from './src/Endcall';
|
|
23
|
+
import { Exit } from './src/Exit';
|
|
24
|
+
import { External } from './src/External';
|
|
25
|
+
import { Eyeoff } from './src/Eyeoff';
|
|
26
|
+
import { Eyeon } from './src/Eyeon';
|
|
27
|
+
import { File } from './src/File';
|
|
28
|
+
import { Flag } from './src/Flag';
|
|
29
|
+
import { Folder } from './src/Folder';
|
|
30
|
+
import { Food } from './src/Food';
|
|
31
|
+
import { Grid } from './src/Grid';
|
|
32
|
+
import { H1 } from './src/H1';
|
|
33
|
+
import { H2 } from './src/H2';
|
|
34
|
+
import { H3 } from './src/H3';
|
|
35
|
+
import { Hand } from './src/Hand';
|
|
36
|
+
import { Heart } from './src/Heart';
|
|
37
|
+
import { Home } from './src/Home';
|
|
38
|
+
import { Invite } from './src/Invite';
|
|
39
|
+
import { Italic } from './src/Italic';
|
|
40
|
+
import { Link } from './src/Link';
|
|
41
|
+
import { Maximize } from './src/Maximize';
|
|
42
|
+
import { Microphone } from './src/Microphone';
|
|
43
|
+
import { Minus } from './src/Minus';
|
|
44
|
+
import { Move } from './src/Move';
|
|
45
|
+
import { Movie } from './src/Movie';
|
|
46
|
+
import { Music } from './src/Music';
|
|
47
|
+
import { Nature } from './src/Nature';
|
|
48
|
+
import { Notification } from './src/Notification';
|
|
49
|
+
import { Objects } from './src/Objects';
|
|
50
|
+
import { Ol } from './src/Ol';
|
|
51
|
+
import { Palette } from './src/Palette';
|
|
52
|
+
import { Photo } from './src/Photo';
|
|
53
|
+
import { Picture } from './src/Picture';
|
|
54
|
+
import { Places } from './src/Places';
|
|
55
|
+
import { Play } from './src/Play';
|
|
56
|
+
import { Screenshare } from './src/Screenshare';
|
|
57
|
+
import { Search } from './src/Search';
|
|
58
|
+
import { Send } from './src/Send';
|
|
59
|
+
import { Settings } from './src/Settings';
|
|
60
|
+
import { Shape } from './src/Shape';
|
|
61
|
+
import { Stroke } from './src/Stroke';
|
|
62
|
+
import { Task } from './src/Task';
|
|
63
|
+
import { Text } from './src/Text';
|
|
64
|
+
import { Trash } from './src/Trash';
|
|
65
|
+
import { Ul } from './src/Ul';
|
|
66
|
+
import { Underline } from './src/Underline';
|
|
67
|
+
import { Updates } from './src/Updates';
|
|
68
|
+
import { Users } from './src/Users';
|
|
69
|
+
import { icons } from './config';
|
|
70
|
+
|
|
71
|
+
export {
|
|
72
|
+
Account,
|
|
73
|
+
Activity,
|
|
74
|
+
Add,
|
|
75
|
+
AddCategory,
|
|
76
|
+
AddChannel,
|
|
77
|
+
Announce,
|
|
78
|
+
Arrow,
|
|
79
|
+
Bold,
|
|
80
|
+
Burger,
|
|
81
|
+
Calendar,
|
|
82
|
+
Camera,
|
|
83
|
+
Chat,
|
|
84
|
+
Check,
|
|
85
|
+
Cite,
|
|
86
|
+
Clip,
|
|
87
|
+
Clock,
|
|
88
|
+
Close,
|
|
89
|
+
Code,
|
|
90
|
+
Copy,
|
|
91
|
+
Download,
|
|
92
|
+
Emotions,
|
|
93
|
+
Endcall,
|
|
94
|
+
Exit,
|
|
95
|
+
External,
|
|
96
|
+
Eyeoff,
|
|
97
|
+
Eyeon,
|
|
98
|
+
File,
|
|
99
|
+
Flag,
|
|
100
|
+
Folder,
|
|
101
|
+
Food,
|
|
102
|
+
Grid,
|
|
103
|
+
H1,
|
|
104
|
+
H2,
|
|
105
|
+
H3,
|
|
106
|
+
Hand,
|
|
107
|
+
Heart,
|
|
108
|
+
Home,
|
|
109
|
+
Invite,
|
|
110
|
+
Italic,
|
|
111
|
+
Link,
|
|
112
|
+
Maximize,
|
|
113
|
+
Microphone,
|
|
114
|
+
Minus,
|
|
115
|
+
Move,
|
|
116
|
+
Movie,
|
|
117
|
+
Music,
|
|
118
|
+
Nature,
|
|
119
|
+
Notification,
|
|
120
|
+
Objects,
|
|
121
|
+
Ol,
|
|
122
|
+
Palette,
|
|
123
|
+
Photo,
|
|
124
|
+
Picture,
|
|
125
|
+
Places,
|
|
126
|
+
Play,
|
|
127
|
+
Screenshare,
|
|
128
|
+
Search,
|
|
129
|
+
Send,
|
|
130
|
+
Settings,
|
|
131
|
+
Shape,
|
|
132
|
+
Stroke,
|
|
133
|
+
Task,
|
|
134
|
+
Text,
|
|
135
|
+
Trash,
|
|
136
|
+
Ul,
|
|
137
|
+
Underline,
|
|
138
|
+
Updates,
|
|
139
|
+
Users,
|
|
140
|
+
icons,
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
export type { IconProps } from './types';
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xipkg/icons",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsup index.ts --format cjs --dts",
|
|
9
|
+
"dev": "npm run build -- --watch",
|
|
10
|
+
"lint": "eslint \"**/*.ts*\""
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@emotion/react": "^11.10.5",
|
|
14
|
+
"@emotion/styled": "^11.10.5",
|
|
15
|
+
"@mui/material": "^5.11.0",
|
|
16
|
+
"react": "^18.2.0"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "^17.0.12",
|
|
20
|
+
"@types/react": "^18.0.22",
|
|
21
|
+
"@types/react-dom": "^18.0.7",
|
|
22
|
+
"@xipkg/config.typescript": "^0.0.3",
|
|
23
|
+
"@xipkg/eslint-config-custom": "^0.0.3",
|
|
24
|
+
"eslint": "^7.32.0",
|
|
25
|
+
"typescript": "^4.6.4"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"author": "xi.effect",
|
|
31
|
+
"description": "",
|
|
32
|
+
"gitHead": "f176995794ce47d08f07dc09807b9af169c215fa"
|
|
33
|
+
}
|
package/src/Account.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Account = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M11.58 3.023c-.566.079-.77.121-1.1.226a5.014 5.014 0 0 0-3.387 3.829c-.083.421-.091 1.34-.017 1.762a5.182 5.182 0 0 0 1.298 2.589c.153.161.271.298.262.305a14.61 14.61 0 0 1-.411.221c-1.823.965-3.188 2.586-3.858 4.585-.365 1.089-.447 1.435-.447 1.879 0 .751.219 1.277.76 1.825.363.367.802.604 1.294.697.47.089 11.582.089 12.052 0 .492-.093.931-.33 1.294-.697.541-.548.76-1.074.76-1.825 0-.443-.08-.781-.447-1.879a8.043 8.043 0 0 0-3.858-4.585 14.61 14.61 0 0 1-.411-.221c-.009-.007.109-.144.262-.305a5.015 5.015 0 0 0 1.128-1.93c.181-.59.22-.857.22-1.499 0-.642-.039-.909-.22-1.499-.528-1.725-2.027-3.063-3.809-3.402-.325-.061-1.143-.107-1.365-.076m1.28 2.097a3.09 3.09 0 0 1 2.026 2.04c.135.434.135 1.246 0 1.68a3.086 3.086 0 0 1-2.046 2.046c-.436.135-1.248.135-1.68 0A3.086 3.086 0 0 1 9.114 8.84c-.136-.434-.136-1.246 0-1.68a3.088 3.088 0 0 1 2.329-2.119c.308-.065 1.101-.021 1.417.079m.345 7.997c1.868.401 3.469 1.654 4.252 3.33.168.36.586 1.607.641 1.913.036.196-.111.477-.298.57-.131.066-.491.07-5.8.07-6.399 0-5.854.029-6.032-.32-.113-.222-.109-.243.178-1.156.373-1.187.775-1.907 1.467-2.632.954-.997 2.119-1.607 3.504-1.833.493-.081 1.581-.051 2.088.058"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Activity.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Activity = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M11.12 2.039c-1.804.181-3.413.768-4.84 1.767-3.542 2.48-5.102 6.953-3.858 11.059a9.762 9.762 0 0 0 2.517 4.196 9.792 9.792 0 0 0 3.333 2.217c3.362 1.332 7.041.802 9.928-1.433.437-.338 1.307-1.208 1.645-1.645C21.255 16.379 22 14.234 22 12c0-4.568-3.158-8.613-7.57-9.697-.984-.241-2.402-.355-3.31-.264m1.614 2.002a7.985 7.985 0 0 1 3.408 1.12c.186.112.338.213.338.223 0 .01-.126.174-.281.365a10.075 10.075 0 0 0-1.936 3.971c-.195.834-.241 1.275-.241 2.28s.046 1.446.241 2.28a10.122 10.122 0 0 0 1.936 3.971c.155.191.281.355.281.365 0 .042-.611.394-1.04.6a7.962 7.962 0 0 1-6.88 0c-.45-.216-1.04-.559-1.04-.605 0-.012.078-.114.173-.227 1.172-1.38 1.956-3.178 2.234-5.124.068-.471.068-2.049 0-2.52-.278-1.946-1.062-3.744-2.234-5.124a1.565 1.565 0 0 1-.173-.228c0-.012.152-.115.338-.227a7.992 7.992 0 0 1 4.876-1.12M6.209 6.958a8.132 8.132 0 0 1 1.699 3.859c.094.602.094 1.764 0 2.366a7.96 7.96 0 0 1-1.252 3.241c-.252.378-.617.851-.656.852-.011 0-.13-.138-.265-.308-.852-1.071-1.399-2.319-1.641-3.748-.094-.554-.094-1.886 0-2.44.242-1.429.789-2.677 1.641-3.748.135-.17.254-.308.265-.308.011 0 .105.106.209.234m12 0a8.132 8.132 0 0 1 1.699 3.859c.094.602.094 1.764 0 2.366a7.96 7.96 0 0 1-1.252 3.241c-.252.378-.617.851-.656.852-.011 0-.13-.138-.265-.308-.852-1.071-1.399-2.319-1.641-3.748-.094-.554-.094-1.886 0-2.44.242-1.429.789-2.677 1.641-3.748.135-.17.254-.308.265-.308.011 0 .105.106.209.234"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Add.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Add = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M11.634 4.063c-.251.077-.559.361-.679.626l-.095.211-.011 2.99-.011 2.99H7.849l-2.989.001-.202.094A1.18 1.18 0 0 0 4 12c0 .427.288.863.689 1.045l.211.095 2.969.011 2.969.011.011 2.969.011 2.969.095.211c.182.401.618.689 1.045.689.427 0 .863-.288 1.045-.689l.095-.211.011-2.969.011-2.969 2.969-.011 2.969-.011.211-.095c.401-.182.689-.618.689-1.045a1.18 1.18 0 0 0-.658-1.025l-.202-.094-2.989-.001h-2.989l-.011-2.99-.011-2.99-.095-.211a1.16 1.16 0 0 0-1.411-.626"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const AddCategory = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path d="M4.5 4.059c-.683.151-1.316.557-1.805 1.161a3.084 3.084 0 0 0-.615 1.201C2.002 6.725 2 6.871 2 12s.002 5.275.08 5.579c.282 1.102 1.238 2.059 2.339 2.341.309.079.435.08 7.581.08 7.146 0 7.272-.001 7.581-.08 1.098-.281 2.058-1.241 2.339-2.339.078-.305.08-.439.08-4.581s-.002-4.276-.08-4.581c-.263-1.026-1.098-1.917-2.143-2.287l-.317-.112-3.721-.011-3.722-.011-.998-.999L10.021 4l-2.641.003c-2.03.003-2.695.016-2.88.056M10.18 7l.999 1h3.961c2.604 0 4.011.015 4.109.042.211.059.469.268.61.496l.121.196v8.532l-.121.196c-.141.228-.399.437-.61.496-.1.028-2.491.041-7.289.041-6.824-.001-7.147-.004-7.3-.074a1.168 1.168 0 0 1-.531-.479l-.109-.186V6.734l.12-.193c.066-.106.185-.246.265-.31.284-.229.267-.227 2.615-.229L9.181 6l.999 1m1.072 2.078c-.247.151-.252.181-.252 1.62V12H9.69c-1.229 0-1.318.005-1.438.078-.222.136-.252.246-.252.93 0 .536.01.628.078.74.151.247.181.252 1.62.252H11v1.302c0 1.439.005 1.469.252 1.62.112.068.203.078.748.078.545 0 .636-.01.748-.078.247-.151.252-.181.252-1.62V14h1.31c1.229 0 1.318-.005 1.438-.078.222-.135.252-.247.252-.922s-.03-.787-.252-.922c-.12-.073-.209-.078-1.438-.078H13v-1.31c0-1.229-.005-1.318-.078-1.438-.136-.222-.246-.252-.93-.252-.536 0-.628.01-.74.078" />
|
|
7
|
+
</SvgIcon>
|
|
8
|
+
);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const AddChannel = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path d="M11.12 2.039c-1.804.181-3.413.768-4.84 1.767-3.542 2.48-5.102 6.953-3.858 11.059a9.762 9.762 0 0 0 2.517 4.196 9.792 9.792 0 0 0 3.333 2.217c3.362 1.332 7.041.802 9.928-1.433.437-.338 1.307-1.208 1.645-1.645C21.255 16.379 22 14.234 22 12c0-4.568-3.158-8.613-7.57-9.697-.984-.241-2.402-.355-3.31-.264m1.62 2.002A7.98 7.98 0 0 1 19.182 8.5a7.965 7.965 0 0 1-1.417 9.03A7.977 7.977 0 0 1 12 19.999c-3.765 0-7.052-2.668-7.823-6.351a7.995 7.995 0 0 1 4.324-8.831 7.919 7.919 0 0 1 4.239-.776m-1.488 3.037c-.255.156-.252.131-.252 2.12V11H9.19c-1.725 0-1.816.004-1.938.078-.222.136-.252.246-.252.93 0 .536.01.628.078.74.156.255.131.252 2.12.252H11v1.802c0 1.989-.003 1.964.252 2.12.112.068.203.078.748.078.545 0 .636-.01.748-.078.255-.156.252-.131.252-2.12V13h1.81c1.725 0 1.816-.004 1.938-.078.222-.135.252-.247.252-.922s-.03-.787-.252-.922c-.122-.074-.213-.078-1.938-.078H13V9.19c0-1.725-.004-1.816-.078-1.938-.136-.222-.246-.252-.93-.252-.536 0-.628.01-.74.078" />
|
|
7
|
+
</SvgIcon>
|
|
8
|
+
);
|
package/src/Announce.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Announce = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="m12.86 5.179-4.88.819L6.4 6c-1.729.002-1.947.023-2.331.228-.268.143-.698.573-.841.841-.224.419-.227.466-.227 3.931s.003 3.512.227 3.931c.061.115.228.327.371.472.321.324.657.497 1.091.564l.31.047v.603c.001 1.235.199 1.783.9 2.483.72.72 1.238.899 2.6.899 1.016 0 1.461-.087 1.98-.388.337-.195.936-.794 1.131-1.131.247-.426.388-.981.389-1.53 0-.148.009-.27.019-.27.011 0 1.321.217 2.91.483 2.65.443 2.92.481 3.235.459.771-.054 1.383-.329 1.92-.861.5-.496.77-1.012.871-1.669.063-.401.063-7.783 0-8.184a2.91 2.91 0 0 0-.9-1.706 2.913 2.913 0 0 0-1.935-.822c-.356-.019-.687.031-5.26.799m5.52 1.256c.241.109.402.264.517.494l.103.207-.001 3.862c-.001 3.651-.005 3.871-.074 4.022-.164.36-.53.62-.874.62-.133 0-8.437-1.359-8.941-1.464L9 14.154v-6.31l.13-.024c1.194-.22 8.71-1.453 8.87-1.455a.95.95 0 0 1 .38.07M7 11v3H5V8h2v3m1.974 5.169 1.034.17-.014.481c-.013.439-.023.496-.125.669a1.038 1.038 0 0 1-.539.454c-.208.074-1.452.074-1.66 0a1.038 1.038 0 0 1-.539-.454c-.107-.182-.111-.212-.124-.839L6.993 16l.474-.001c.37 0 .697.037 1.507.17"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Arrow.tsx
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Arrow = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M8.487 3.56a2.155 2.155 0 0 0-.511.367c-.528.507-.669 1.049-.414 1.593.113.24.363.501 3.23 3.37L13.899 12l-3.107 3.11c-2.867 2.869-3.117 3.13-3.23 3.37-.247.527-.128 1.031.365 1.544.342.356.702.536 1.073.536.227 0 .312-.021.545-.139.254-.127.565-.428 4.023-3.89 3.472-3.475 3.757-3.77 3.87-4.011.17-.363.17-.677 0-1.04-.113-.241-.398-.536-3.87-4.011-3.458-3.462-3.769-3.763-4.023-3.89-.374-.189-.688-.194-1.058-.019"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
export default Arrow;
|
package/src/Bold.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Bold = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M7 12.002v6.002l3.25-.015c2.857-.014 3.291-.024 3.59-.084 1.752-.35 2.818-1.247 3.1-2.609.199-.963-.08-1.956-.735-2.616-.456-.46-1.088-.786-1.665-.859-.511-.065-.506-.121.03-.291.896-.286 1.533-.858 1.792-1.61.126-.363.154-1.075.06-1.498-.255-1.144-1.255-1.988-2.702-2.278C13.111 6.022 12.52 6 9.77 6H7v6.002m5.571-3.867c.474.133.804.379 1.012.753.107.195.117.244.117.612 0 .367-.01.417-.116.61a1.62 1.62 0 0 1-.674.654c-.445.227-.582.246-1.92.266l-1.23.018V8.031l1.29.019c1.026.015 1.337.033 1.521.085m.154 4.683c.576.122 1.09.499 1.3.953.102.222.115.293.115.649 0 .357-.012.424-.112.628a1.46 1.46 0 0 1-.74.674c-.442.167-.749.195-2.178.197l-1.35.001v-3.16l1.35.001c1.004 0 1.418.015 1.615.057"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Burger.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Burger = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M3.117 4.054c-.412.112-.798.446-.99.859-.09.192-.106.282-.106.588-.001.327.011.386.129.624.156.317.442.598.761.748l.229.107h17.72l.229-.107a1.67 1.67 0 0 0 .761-.748c.118-.238.13-.298.13-.625s-.012-.387-.13-.625a1.67 1.67 0 0 0-.761-.748l-.229-.107-8.78-.008c-6.873-.005-8.82.004-8.963.042m-.168 6.563c-.45.185-.768.544-.887 1.002a1.27 1.27 0 0 0 0 .762c.121.465.467.847.92 1.016l.222.084 8.848-.011 8.848-.01.229-.108a1.505 1.505 0 0 0 .704-2.026c-.123-.255-.428-.549-.704-.678l-.229-.108-8.86-.009-8.86-.009-.231.095m.168 6.437c-.412.112-.798.446-.99.859-.09.192-.106.282-.106.588-.001.327.011.386.129.624.156.317.442.598.761.748l.229.107h17.72l.229-.107a1.67 1.67 0 0 0 .761-.748c.118-.238.13-.298.13-.625s-.012-.387-.13-.625a1.67 1.67 0 0 0-.761-.748l-.229-.107-8.78-.008c-6.873-.005-8.82.004-8.963.042"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Calendar.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Calendar = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M8.59 2.062a.812.812 0 0 0-.528.545A1.485 1.485 0 0 0 8 2.903c0 .08-.025.09-.31.114-1.023.088-1.853.392-2.66.973-.801.577-1.471 1.514-1.781 2.49-.236.744-.229.582-.229 5.54 0 4.179.006 4.589.07 4.902a5.058 5.058 0 0 0 2.731 3.57c.32.16.945.36 1.359.436.407.075 9.233.075 9.64 0 1.882-.346 3.392-1.662 3.935-3.429.232-.758.225-.582.225-5.499 0-3.531-.011-4.602-.052-4.82-.289-1.575-1.221-2.857-2.616-3.599-.59-.314-1.244-.499-1.994-.563l-.301-.026-.046-.24c-.098-.514-.386-.732-.971-.732-.586 0-.873.218-.972.736L13.982 3h-3.964l-.046-.244c-.093-.489-.372-.717-.908-.742a1.435 1.435 0 0 0-.474.048M8 5.593c0 .702.054.938.261 1.146.344.343 1.134.343 1.478 0 .207-.208.261-.444.261-1.146V5h4v.593c0 .702.054.938.261 1.146.344.343 1.134.343 1.478 0 .208-.208.261-.444.261-1.152v-.599l.292.025c1.172.099 2.215.955 2.59 2.127.076.239.092.396.108 1.07l.019.79H4.992l.017-.79c.02-.877.066-1.096.335-1.61.472-.9 1.513-1.574 2.466-1.596L8 5v.593m10.991 8.197-.012 2.79-.094.28c-.329.989-1.069 1.722-2.045 2.026l-.3.094H7.46l-.3-.094c-.976-.304-1.715-1.036-2.046-2.026l-.093-.28-.012-2.79L4.997 11h14.007l-.013 2.79"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Camera.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Camera = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M6.378 5.058A4.002 4.002 0 0 0 3.058 8.4c-.085.558-.085 6.642 0 7.2A3.982 3.982 0 0 0 6.4 18.942c.558.085 6.642.085 7.2 0a3.968 3.968 0 0 0 2.978-2.191l.212-.428.635.406c.349.223.752.449.895.502.728.27 1.514.093 2.084-.47.286-.284.474-.622.552-.993.062-.296.062-7.24 0-7.536-.21-1.004-1.232-1.718-2.236-1.563-.36.056-.646.192-1.359.648-.393.252-.584.354-.596.318a9.287 9.287 0 0 0-.209-.434A3.97 3.97 0 0 0 13.6 5.058c-.513-.078-6.718-.078-7.222 0m7.114 2.002c.36.093.626.25.912.536.286.286.443.552.536.912.089.342.089 6.642 0 6.984-.093.36-.25.626-.536.912-.286.286-.552.443-.912.536-.342.089-6.642.089-6.984 0-.36-.093-.626-.25-.912-.536-.286-.286-.443-.552-.536-.912-.089-.342-.089-6.642 0-6.984.093-.36.25-.626.536-.912.28-.28.55-.442.895-.534.32-.087 6.67-.089 7.001-.002m5.498 6.613-.01 1.673-.98-.624-.98-.625V9.906l.98-.624.98-.625.01 1.672c.006.919.006 2.424 0 3.344M7.667 9.065C7.303 9.177 7 9.602 7 10c0 .402.312.827.69.939.297.088 2.323.088 2.62 0 .378-.112.69-.537.69-.939 0-.402-.312-.827-.69-.939-.292-.087-2.358-.084-2.643.004"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Chat.tsx
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Chat = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path d="M7.34 3.046a4.934 4.934 0 0 0-1.52.471c-1.23.603-2.132 1.623-2.557 2.89-.257.765-.237.205-.252 7.41-.015 7.391-.039 6.802.294 7.126a.945.945 0 0 0 .979.243c.097-.03.973-.534 1.947-1.119l1.77-1.064 4.37-.014c3.933-.013 4.396-.021 4.642-.082.984-.243 1.732-.636 2.395-1.259.739-.695 1.202-1.491 1.463-2.517l.109-.431V7.3l-.109-.431c-.261-1.026-.724-1.822-1.462-2.516a5.095 5.095 0 0 0-2.808-1.311c-.42-.052-8.854-.048-9.261.004m9.416 2.043c.889.274 1.569.851 1.948 1.651.298.63.296.597.296 4.26 0 3.636 0 3.629-.284 4.238-.424.906-1.164 1.495-2.138 1.702-.235.05-.96.059-4.705.059L7.445 17l-1.172.705c-.645.387-1.196.713-1.224.724-.041.016-.049-1.036-.039-5.474.014-6.133-.012-5.599.302-6.251a3.046 3.046 0 0 1 2.191-1.662c.108-.019 2.186-.03 4.617-.027 3.999.007 4.441.014 4.636.074m-8.903 4.982a1.245 1.245 0 0 0-.104 2.318c.465.213.999.11 1.374-.266a1.229 1.229 0 0 0-.793-2.107c-.2-.014-.324.001-.477.055m3.847-.036c-.377.1-.764.456-.882.811-.1.302-.065.716.083.989a1.248 1.248 0 0 0 2.198 0c.148-.273.183-.687.083-.989-.086-.258-.37-.579-.632-.711-.214-.108-.633-.158-.85-.1m3.758 0c-.545.141-.946.64-.95 1.182-.003.376.106.643.369.906a1.233 1.233 0 0 0 2.113-.797 1.234 1.234 0 0 0-1.16-1.309 1.663 1.663 0 0 0-.372.018" />
|
|
7
|
+
</SvgIcon>
|
|
8
|
+
);
|
package/src/Check.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Check = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M17.516 6.726c-.231.113-.612.481-3.885 3.748l-3.63 3.622-1.63-1.621c-1.418-1.409-1.665-1.638-1.887-1.748-.494-.244-.945-.133-1.43.351-.336.337-.434.545-.434.922 0 .237.02.342.098.5.076.155.603.704 2.34 2.442 2.418 2.418 2.418 2.418 2.868 2.451.264.019.465-.038.714-.204.241-.16 8.232-8.139 8.479-8.466.225-.297.298-.516.273-.813-.023-.289-.163-.548-.446-.832-.484-.483-.935-.595-1.43-.352"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Cite.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Cite = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M4.564 9.424c-.651.665-1.126 1.439-1.379 2.245-.158.504-.184.756-.185 1.761v.93h2.48v-.931c0-1.002.037-1.441.162-1.903.09-.33.398-1.008.646-1.418.094-.157.149-.287.128-.306-.02-.018-.27-.164-.556-.323a61.573 61.573 0 0 1-.694-.39l-.174-.101-.428.436m3.919 0c-.779.792-1.298 1.727-1.499 2.704-.048.232-.064.547-.064 1.27v.962H9.4v-.97c0-1.071.052-1.553.219-2.051.107-.32.382-.893.605-1.264.075-.124.136-.235.136-.247 0-.011-.265-.169-.59-.35-.325-.181-.65-.365-.724-.409l-.133-.08-.43.435m6.157.95c0 .994-.059 1.663-.183 2.094-.1.344-.453 1.116-.693 1.514l-.122.202.724.407.723.407.215-.183c.636-.544 1.302-1.556 1.592-2.419.154-.46.183-.743.184-1.786v-.97h-2.44v.734m3.87.436c-.016 1.101-.024 1.193-.121 1.558-.107.4-.471 1.203-.722 1.592-.098.152-.127.228-.094.246l.725.407.678.381.106-.075c.058-.042.261-.239.451-.438.745-.784 1.296-1.857 1.424-2.776.024-.171.043-.705.043-1.188V9.64h-2.472l-.018 1.17"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Clip.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Clip = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M13.62 2.985c-.766.116-1.312.28-1.88.565-.824.413-.855.44-4.151 3.727-2.073 2.067-3.097 3.116-3.15 3.226-.147.303-.071.747.166.965a.85.85 0 0 0 .866.15c.104-.043 1.063-.973 3.169-3.074 1.83-1.825 3.125-3.086 3.286-3.199a4.75 4.75 0 0 1 1.376-.632c.511-.129 1.403-.129 1.918-.001.481.12 1.16.458 1.563.779 1.616 1.289 1.964 3.692.781 5.398-.141.204-1.369 1.457-4.113 4.194-4.282 4.273-4.055 4.069-4.715 4.238a2.394 2.394 0 0 1-2.828-1.444c-.272-.682-.231-1.366.123-2.057.131-.256.414-.551 3.366-3.513 1.792-1.797 3.301-3.279 3.398-3.337a.82.82 0 0 1 1.104.285.981.981 0 0 1 .059.732c-.023.062-1.119 1.193-2.434 2.513-1.316 1.32-2.433 2.459-2.482 2.532a.79.79 0 0 0-.11.36.81.81 0 0 0 1.136.81c.221-.1 4.984-4.869 5.216-5.222a2.33 2.33 0 0 0 .37-1.26c.005-.447-.052-.714-.24-1.109a2.367 2.367 0 0 0-.83-.963 2.237 2.237 0 0 0-1.092-.411 2.414 2.414 0 0 0-1.412.246l-.34.167-3.293 3.285c-1.811 1.807-3.378 3.393-3.483 3.525a3.975 3.975 0 0 0-.807 1.748 4.248 4.248 0 0 0 .061 1.832 4.067 4.067 0 0 0 3.908 2.999c.877.002 1.781-.29 2.424-.78.331-.253 7.982-7.908 8.214-8.219a5.79 5.79 0 0 0 1.12-2.748c.056-.425.024-1.343-.063-1.772a5.71 5.71 0 0 0-4.392-4.444c-.36-.079-1.507-.137-1.809-.091"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Clock.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Clock = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M11.12 2.039c-1.804.181-3.413.768-4.84 1.767-3.542 2.48-5.102 6.953-3.858 11.059a9.762 9.762 0 0 0 2.517 4.196 9.792 9.792 0 0 0 3.333 2.217c3.362 1.332 7.041.802 9.928-1.433.437-.338 1.307-1.208 1.645-1.645C21.255 16.379 22 14.234 22 12c0-4.568-3.158-8.613-7.57-9.697-.984-.241-2.402-.355-3.31-.264m1.62 2.002A7.98 7.98 0 0 1 19.182 8.5a7.965 7.965 0 0 1-1.417 9.03A7.977 7.977 0 0 1 12 19.999c-3.765 0-7.052-2.668-7.823-6.351a7.995 7.995 0 0 1 4.324-8.831 7.919 7.919 0 0 1 4.239-.776m-1.123 1.536c-.182.079-.41.293-.509.479-.088.164-.088.165-.099 3.121-.01 2.655-.004 2.977.055 3.16.06.186.222.36 1.931 2.075 2.099 2.106 2.078 2.089 2.559 2.062.527-.03.886-.382.919-.9.031-.489.067-.443-1.797-2.314l-1.674-1.68-.011-2.68c-.011-2.671-.011-2.681-.099-2.844a1.21 1.21 0 0 0-.518-.481c-.166-.07-.596-.069-.757.002"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Close.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Close = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M6.213 5.442a.97.97 0 0 0-.756.701.891.891 0 0 0 .068.711c.055.11.926 1.011 2.568 2.656L10.579 12l-2.503 2.51c-1.547 1.551-2.528 2.564-2.568 2.653a.999.999 0 0 0 .627 1.377.883.883 0 0 0 .719-.065c.11-.055 1.011-.926 2.656-2.568L12 13.421l2.49 2.486c1.645 1.642 2.546 2.513 2.656 2.568.4.199.822.129 1.14-.189a.948.948 0 0 0 .189-1.14c-.055-.11-.926-1.011-2.568-2.656L13.421 12l2.486-2.49c1.642-1.645 2.513-2.546 2.568-2.656a.891.891 0 0 0 .068-.711 1.02 1.02 0 0 0-.529-.626 1.059 1.059 0 0 0-.856.002c-.125.062-.919.829-2.668 2.574L12 10.579 9.51 8.093C7.898 6.484 6.964 5.58 6.86 5.53c-.2-.098-.431-.13-.647-.088"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Code.tsx
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Code = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path d="M12.923 6.15a2808.986 2808.986 0 0 0-2.803 10.81c0 .024.177.04.457.04.401 0 .46-.009.479-.07.066-.218 2.824-10.849 2.824-10.886 0-.029-.151-.044-.458-.044h-.459l-.04.15M5.8 10.194l-2.78 1.468-.011.364-.012.364 2.783 1.465a291.25 291.25 0 0 0 2.802 1.465c.01 0 .018-.252.018-.56v-.56l-2.12-1.06c-1.213-.606-2.12-1.083-2.12-1.114 0-.03.9-.497 2.12-1.099L8.6 9.881V9.3c0-.319-.005-.579-.01-.577L5.8 10.194m9.6-.892v.579l2.12 1.046c1.219.602 2.12 1.069 2.12 1.099 0 .031-.908.508-2.12 1.114L15.4 14.2v.56c0 .308.008.56.018.56.01 0 1.271-.659 2.802-1.465l2.783-1.465-.012-.364-.011-.364-2.34-1.232-2.79-1.47-.45-.237v.579" />
|
|
7
|
+
</SvgIcon>
|
|
8
|
+
);
|
package/src/Copy.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Copy = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M3.987 1.112c-.223.036-.636.204-.856.349-.454.3-.806.817-.916 1.347-.065.312-.068 14.605-.003 14.838.066.239.296.513.53.634.434.223.93.15 1.266-.186.352-.351.325.275.325-7.723V3.25h6.038c6.782 0 6.291.024 6.638-.324a1.066 1.066 0 0 0 0-1.519c-.348-.348.161-.324-6.758-.318-3.386.003-6.205.014-6.264.023M8.32 5.445a2.822 2.822 0 0 0-.855.349 2.215 2.215 0 0 0-.917 1.347c-.068.325-.068 15.726 0 16.051.169.812.865 1.507 1.677 1.677.323.067 12.477.067 12.8 0 .812-.17 1.508-.865 1.677-1.677.068-.325.068-15.726 0-16.051-.149-.716-.666-1.305-1.404-1.599l-.26-.104-6.305-.005c-3.467-.003-6.353.003-6.413.012m12.263 9.722v7.583H8.667V7.583h11.916v7.584"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Download.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Download = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M6.378 5.058A4.002 4.002 0 0 0 3.058 8.4c-.085.558-.085 6.642 0 7.2A3.982 3.982 0 0 0 6.4 18.942c.558.085 6.642.085 7.2 0a3.968 3.968 0 0 0 2.978-2.191l.212-.428.635.406c.349.223.752.449.895.502.728.27 1.514.093 2.084-.47.286-.284.474-.622.552-.993.062-.296.062-7.24 0-7.536-.21-1.004-1.232-1.718-2.236-1.563-.36.056-.646.192-1.359.648-.393.252-.584.354-.596.318a9.287 9.287 0 0 0-.209-.434A3.97 3.97 0 0 0 13.6 5.058c-.513-.078-6.718-.078-7.222 0m7.114 2.002c.36.093.626.25.912.536.286.286.443.552.536.912.089.342.089 6.642 0 6.984-.093.36-.25.626-.536.912-.286.286-.552.443-.912.536-.342.089-6.642.089-6.984 0-.36-.093-.626-.25-.912-.536-.286-.286-.443-.552-.536-.912-.089-.342-.089-6.642 0-6.984.093-.36.25-.626.536-.912.28-.28.55-.442.895-.534.32-.087 6.67-.089 7.001-.002m5.498 6.613-.01 1.673-.98-.624-.98-.625V9.906l.98-.624.98-.625.01 1.672c.006.919.006 2.424 0 3.344M7.667 9.065C7.303 9.177 7 9.602 7 10c0 .402.312.827.69.939.297.088 2.323.088 2.62 0 .378-.112.69-.537.69-.939 0-.402-.312-.827-.69-.939-.292-.087-2.358-.084-2.643.004"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Emotions.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Emotions = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M11.28 2.024c-2.109.185-3.979.926-5.561 2.201-1.675 1.351-2.908 3.28-3.416 5.346-.216.881-.277 1.41-.277 2.429s.061 1.548.277 2.429c.886 3.607 3.839 6.502 7.457 7.311.844.189 1.287.236 2.24.236.953 0 1.396-.047 2.24-.236 3.618-.809 6.571-3.704 7.457-7.311.213-.869.276-1.413.278-2.409.001-.976-.043-1.404-.235-2.26-.458-2.049-1.658-4.025-3.26-5.369-1.824-1.531-3.915-2.321-6.26-2.368a15.89 15.89 0 0 0-.94.001m1.54 2.017c2.788.311 5.174 1.99 6.38 4.488a7.95 7.95 0 0 1-.001 6.945A8.02 8.02 0 0 1 12 19.999a8.014 8.014 0 0 1-7.2-4.528 7.948 7.948 0 0 1 0-6.942A7.973 7.973 0 0 1 8.529 4.8c1.323-.64 2.886-.916 4.291-.759m-4.67 5a1.567 1.567 0 0 0-1.006.839c-.11.231-.124.3-.124.62 0 .311.015.394.113.604.143.309.452.617.767.764.207.097.29.112.6.112.311 0 .394-.015.604-.113.309-.143.617-.452.764-.767.097-.207.112-.29.112-.6 0-.311-.015-.394-.113-.604a1.68 1.68 0 0 0-.757-.757c-.258-.117-.703-.163-.96-.098m7 0a1.618 1.618 0 0 0-1.017.859c-.096.207-.112.29-.111.6 0 .309.016.395.112.604.141.309.45.617.766.763.207.096.29.112.6.111.309 0 .395-.016.604-.112.309-.141.617-.45.763-.766.096-.207.112-.29.111-.6 0-.309-.016-.395-.112-.604a1.67 1.67 0 0 0-.756-.757c-.258-.117-.703-.163-.96-.098m-6.859 6.325-.727.659c-.009.008.108.133.26.278 1.26 1.209 2.989 1.823 4.688 1.664a5.925 5.925 0 0 0 2.828-.991c.334-.223.878-.684 1.011-.856l.077-.1-.657-.6c-.361-.33-.692-.625-.734-.655-.07-.05-.096-.038-.27.124a4.17 4.17 0 0 1-1.753.98c-.351.097-.461.109-1.014.109-.551 0-.663-.012-1.011-.108a5.467 5.467 0 0 1-.727-.269c-.34-.162-.863-.529-1.079-.757a.514.514 0 0 0-.15-.124c-.017 0-.352.291-.742.646"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Endcall.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Endcall = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M10.94 5.943a81.74 81.74 0 0 1-.66.059 16.841 16.841 0 0 0-5.249 1.362c-.659.289-1.749.855-2.113 1.097a3.718 3.718 0 0 0-1.487 2.103c-.083.312-.09.421-.09 1.556-.001 1.049.009 1.256.07 1.479.22.796.724 1.408 1.455 1.765.511.25.79.286 2.048.266.933-.015 1.096-.028 1.31-.098a2.78 2.78 0 0 0 1.835-1.912c.036-.132.078-.455.093-.719l.028-.478.413-.13a12.69 12.69 0 0 1 1.767-.401c.661-.103 2.619-.103 3.28 0a12.69 12.69 0 0 1 1.767.401l.413.13.028.478c.015.264.057.587.093.719a2.78 2.78 0 0 0 1.835 1.912c.214.07.377.083 1.31.098 1.258.02 1.537-.016 2.048-.266.56-.274.989-.696 1.247-1.225.262-.54.279-.663.279-1.999 0-.872-.015-1.26-.054-1.42-.192-.783-.613-1.505-1.143-1.962-.316-.272-.601-.451-1.316-.823-2.081-1.083-3.957-1.66-6.247-1.92-.486-.056-2.596-.107-2.96-.072m2.48 2.039c2.199.211 4.083.784 5.988 1.823.639.349.808.477.974.736.231.361.26.489.286 1.259.042 1.263-.018 1.55-.369 1.749-.151.085-.202.09-1.016.09-.793.001-.871-.005-1.033-.084a.776.776 0 0 1-.282-.245c-.1-.152-.108-.198-.131-.786-.034-.831-.138-1.103-.589-1.533-.284-.271-.412-.337-1.048-.543a13.751 13.751 0 0 0-2.42-.556c-.69-.101-2.87-.101-3.56 0-.926.136-1.601.291-2.42.556-.636.206-.764.272-1.048.543-.447.426-.555.704-.589 1.509-.029.693-.079.843-.336 1.014-.161.106-.161.106-1.064.116-.876.011-.908.008-1.062-.08-.351-.201-.411-.485-.37-1.75.025-.77.054-.895.287-1.259.166-.259.335-.387.974-.736 1.878-1.024 3.781-1.608 5.936-1.822.75-.075 2.123-.075 2.892-.001"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Exit.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Exit = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M6.433 3.043a4.302 4.302 0 0 0-1.702.669c-.776.527-1.335 1.323-1.601 2.277-.105.375-.109.43-.11 1.331v.94l.124.22c.139.248.429.455.699.501.389.065.813-.144 1.013-.501l.124-.22.024-.84c.02-.716.036-.874.108-1.074.242-.669.833-1.18 1.505-1.303.332-.06 10.434-.06 10.766 0 .768.141 1.433.806 1.574 1.574.06.332.06 10.434 0 10.766-.138.755-.787 1.414-1.549 1.573-.298.062-10.518.062-10.816 0a2.056 2.056 0 0 1-1.48-1.302c-.072-.199-.088-.361-.11-1.074-.022-.748-.035-.858-.11-1.001-.191-.364-.496-.553-.892-.553s-.698.187-.894.553c-.081.152-.086.215-.086 1.101.001.904.005.955.111 1.337.42 1.508 1.576 2.591 3.095 2.9.399.081.505.083 5.774.083s5.375-.002 5.774-.083c1.517-.309 2.683-1.402 3.098-2.905l.108-.392V6.38l-.106-.385c-.263-.95-.83-1.756-1.605-2.283a5.079 5.079 0 0 0-1.311-.599l-.338-.091-5.48-.007c-3.014-.003-5.582.009-5.707.028m3.933 4.641a1.004 1.004 0 0 0-.621 1.386c.041.087.437.521.949 1.039l.881.889-4.918.011-4.917.011-.161.086c-.366.196-.556.5-.557.894a.977.977 0 0 0 .737.96c.089.025 1.936.04 4.979.04h4.838l-.863.87c-.523.528-.897.938-.95 1.043-.429.848.437 1.737 1.307 1.343.214-.097 3.691-3.575 3.815-3.816.128-.25.128-.63 0-.88-.126-.244-3.556-3.678-3.792-3.795-.2-.1-.541-.138-.727-.081"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/External.tsx
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const External = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path d="M6.433 3.043a4.302 4.302 0 0 0-1.702.669c-.775.527-1.335 1.322-1.602 2.277l-.109.391v11.24l.111.397c.421 1.509 1.576 2.591 3.095 2.9.399.081.505.083 5.774.083s5.375-.002 5.774-.083a4.003 4.003 0 0 0 3.097-2.905l.108-.392.012-2.875c.014-3.254.024-3.132-.29-3.446a.987.987 0 0 0-1.17-.173 1.065 1.065 0 0 0-.489.585c-.027.096-.042 1.095-.042 2.792 0 1.724-.015 2.725-.043 2.88-.138.755-.787 1.414-1.549 1.573-.298.062-10.518.062-10.816 0-.762-.159-1.411-.818-1.549-1.573-.06-.332-.06-10.434 0-10.766a1.93 1.93 0 0 1 .553-1.021 1.93 1.93 0 0 1 1.021-.553C6.772 5.015 7.773 5 9.5 5c2.986 0 2.894.009 3.201-.299.18-.18.299-.459.299-.701 0-.242-.119-.521-.299-.701-.309-.309-.203-.3-3.298-.294-1.509.003-2.845.02-2.97.038m8.231.02a1.005 1.005 0 0 0-.533.448c-.095.161-.111.233-.111.489s.016.328.111.489c.061.103.17.234.243.289.277.211.365.222 1.84.222h1.364l-2.224 2.23c-2.011 2.017-2.23 2.249-2.289 2.427-.129.39-.044.766.234 1.044s.654.363 1.044.234c.178-.059.41-.278 2.427-2.289L19 6.422v1.359c0 .813.017 1.419.042 1.508.061.22.273.473.489.585a.987.987 0 0 0 1.169-.172c.309-.309.3-.215.3-3.202 0-2.986.009-2.894-.299-3.201-.308-.308-.213-.299-3.218-.296-2.207.002-2.69.012-2.819.06" />
|
|
7
|
+
</SvgIcon>
|
|
8
|
+
);
|
package/src/Eyeoff.tsx
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Eyeoff = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path d="M3.019 2.955c-.483.219-.722.82-.519 1.305.047.111.389.483 1.126 1.224l1.059 1.063-.337.286c-.512.435-1.372 1.339-1.74 1.829-.675.899-.979 1.78-.979 2.838 0 1.035.307 1.942.946 2.795a11.8 11.8 0 0 0 7.065 4.464c2.048.419 4.136.288 6.132-.386l.553-.186 1.447 1.443c1.377 1.372 1.459 1.446 1.665 1.506.268.079.337.079.587.005.57-.169.861-.814.618-1.368-.071-.161-1.47-1.578-8.334-8.444-6.469-6.471-8.291-8.272-8.446-8.35a1.066 1.066 0 0 0-.843-.024m7.983 1.09c-.762.063-1.567.214-2.355.443l-.293.085.825.826.825.826.394-.07c1.999-.357 4.161-.039 5.999.883a10.016 10.016 0 0 1 3.208 2.574c.496.615.691 1.073.741 1.739.071.937-.367 1.767-1.521 2.881-.212.204-.385.384-.385.4 0 .016.311.339.691.719l.691.69.504-.51c.864-.877 1.278-1.401 1.564-1.982a4.384 4.384 0 0 0 .479-2.049c0-.749-.145-1.371-.478-2.047-.473-.961-1.774-2.359-3.011-3.236-2.328-1.65-5.059-2.403-7.878-2.172m.598 2.976c-.033.007-.19.033-.35.059-.159.026-.29.059-.29.074s.455.481 1.01 1.036c.996.995 1.013 1.009 1.223 1.049.584.11.933.457 1.051 1.048.045.221.05.228 1.076 1.253l1.031 1.031.049-.216c.075-.331.098-1.19.041-1.546a4.508 4.508 0 0 0-3.881-3.768c-.278-.036-.821-.047-.96-.02m-3.857 3.018c-.216.684-.285 1.254-.223 1.86.199 1.96 1.524 3.485 3.46 3.986.307.079.458.093 1.02.092.693 0 1.046-.058 1.563-.255l.217-.082.478.479c.263.263.468.488.456.5-.036.036-.85.212-1.332.289-.546.086-2.146.098-2.642.019-1.924-.306-3.477-.96-4.836-2.038-.806-.64-1.731-1.678-1.986-2.229-.199-.429-.255-.684-.254-1.16.001-.445.074-.781.251-1.16.233-.498.936-1.308 1.705-1.967l.48-.411.874.873.873.873-.104.331m3.097 2.666 1.3 1.304-.322-.023a2.673 2.673 0 0 1-1.185-.399c-.661-.439-1.113-1.24-1.113-1.969 0-.12.005-.218.01-.218.006 0 .595.587 1.31 1.305" />
|
|
7
|
+
</SvgIcon>
|
|
8
|
+
);
|
package/src/Eyeon.tsx
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Eyeon = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path d="M10.96 4.544c-2.31.266-4.109.934-5.825 2.165-1.149.823-2.38 2.096-2.89 2.987a4.609 4.609 0 0 0 0 4.608c.225.394.749 1.052 1.253 1.572a11.808 11.808 0 0 0 7.144 3.548c.713.087 2.003.087 2.716 0a11.808 11.808 0 0 0 7.144-3.548c.761-.787 1.277-1.507 1.538-2.149a4.645 4.645 0 0 0-.285-4.031c-.373-.653-1.365-1.764-2.169-2.43-1.714-1.42-3.59-2.27-5.806-2.629-.416-.068-.736-.087-1.6-.097a25.21 25.21 0 0 0-1.22.004m2.65 2.091c1.02.181 1.766.419 2.65.842a9.482 9.482 0 0 1 2.622 1.842c1.115 1.112 1.453 1.736 1.453 2.681 0 .934-.339 1.568-1.413 2.642a9.707 9.707 0 0 1-5.022 2.674 10.373 10.373 0 0 1-3.8 0 9.707 9.707 0 0 1-5.022-2.674C4.004 13.568 3.665 12.934 3.665 12c0-.945.338-1.569 1.453-2.681A9.482 9.482 0 0 1 7.74 7.477a9.506 9.506 0 0 1 2.747-.853c.624-.095.662-.096 1.693-.084.758.009 1.059.029 1.43.095m-2.454.947c-.872.158-1.724.627-2.383 1.311-.532.552-.831 1.044-1.049 1.727a4.497 4.497 0 0 0 .535 3.88c.202.309.932 1.039 1.241 1.241.766.5 1.604.752 2.5.752.896 0 1.734-.252 2.5-.752.309-.202 1.039-.932 1.241-1.241a4.516 4.516 0 0 0 .753-2.5 4.2 4.2 0 0 0-.218-1.38c-.218-.683-.517-1.175-1.049-1.727-.677-.704-1.508-1.154-2.422-1.314-.413-.073-1.24-.071-1.649.003m1.436 1.999c.89.209 1.618.938 1.828 1.829a2.67 2.67 0 0 1-.183 1.685c-.427.874-1.256 1.39-2.237 1.39-.981 0-1.81-.516-2.237-1.39-.326-.671-.327-1.529 0-2.187a2.49 2.49 0 0 1 1.629-1.326 3.27 3.27 0 0 1 1.2-.001" />
|
|
7
|
+
</SvgIcon>
|
|
8
|
+
);
|
package/src/File.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const File = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M7.579 3.042C5.837 3.211 4.403 4.544 4.073 6.3c-.078.41-.078 10.99 0 11.4a4.015 4.015 0 0 0 2.647 3.072c.617.211.534.208 5.28.208 3.485 0 4.479-.011 4.7-.053a4.025 4.025 0 0 0 3.038-2.545c.246-.653.235-.44.251-5.16.015-4.287.014-4.322-.07-4.72a4.452 4.452 0 0 0-.619-1.488c-.337-.511-2.8-2.975-3.31-3.311a4.2 4.2 0 0 0-1.43-.606l-.42-.096-3.12.005c-1.716.003-3.265.019-3.441.036m5.432 3.208c.022 1.416.047 1.562.36 2.169.232.449.761.978 1.21 1.21.607.313.753.338 2.169.36l1.25.021-.001 3.645c-.001 2.312-.016 3.709-.041 3.821-.154.664-.818 1.328-1.482 1.482-.241.055-8.711.055-8.952 0-.664-.154-1.328-.818-1.482-1.482-.055-.242-.055-10.71 0-10.952.151-.654.818-1.328 1.466-1.48.084-.02 1.351-.038 2.817-.04L12.99 5l.021 1.25m3.679 1.741c-.731.01-.898.001-1.044-.055a1.007 1.007 0 0 1-.552-.516c-.089-.191-.093-.242-.094-1.1v-.9l1.28 1.28 1.281 1.28-.871.011m-7.93 3.048c-.264.049-.367.097-.507.24-.313.32-.305 1.136.014 1.454.236.236.328.247 2.133.247 1.469 0 1.638-.007 1.808-.073.355-.136.512-.415.512-.907 0-.481-.138-.738-.479-.896-.173-.08-.249-.084-1.741-.091-.858-.003-1.641.008-1.74.026m0 4.001c-.264.047-.367.096-.507.239-.313.32-.305 1.136.014 1.454.247.248.237.247 3.133.247 2.435 0 2.633-.005 2.808-.073.355-.136.512-.415.512-.907 0-.481-.138-.738-.479-.896-.177-.082-.232-.084-2.741-.09-1.408-.004-2.641.008-2.74.026"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Flag.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Flag = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M5.643 3.067a1.082 1.082 0 0 0-.577.593C5.005 3.838 5 4.557 5 12.497c0 5.831.014 8.691.042 8.792.061.22.273.473.489.585a.987.987 0 0 0 1.169-.172c.313-.313.3-.151.3-3.749V14.76h.798c1.432 0 3.517-.341 5.03-.823.638-.204.998-.255 1.792-.256.895-.001 1.839.119 2.34.298.099.035.306.14.459.233.262.158.297.168.58.168.257 0 .329-.016.49-.111a.986.986 0 0 0 .45-.547c.09-.255.091-8.77.001-9.152-.165-.698-.64-1.218-1.329-1.457-.257-.088-.325-.093-1.311-.093-1.099 0-1.347.022-2.56.225-1.01.17-1.909.373-2.54.575-.664.213-.99.26-1.787.26-1.023 0-1.892-.238-2.559-.701a4.825 4.825 0 0 0-.454-.285c-.195-.093-.542-.106-.757-.027M17 8.464c0 3.283-.004 3.463-.07 3.437a7.553 7.553 0 0 0-.61-.112c-.458-.072-.714-.085-1.68-.084-1.297 0-1.471.025-2.508.353-.601.189-1.531.392-2.592.566-.512.083-.83.108-1.59.125L7 12.77V5.689l.31.095c.793.246 1.031.276 2.15.275 1.187-.001 1.397-.03 2.298-.317.628-.201 1.183-.329 2.163-.5 1.048-.183 1.543-.233 2.349-.238L17 5v3.464"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Folder.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Folder = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M4.5 4.059c-.683.151-1.316.557-1.805 1.161a3.084 3.084 0 0 0-.615 1.201C2.002 6.725 2 6.871 2 12s.002 5.275.08 5.579c.282 1.102 1.238 2.059 2.339 2.341.309.079.435.08 7.581.08 7.146 0 7.272-.001 7.581-.08 1.098-.281 2.058-1.241 2.339-2.339.078-.305.08-.439.08-4.581s-.002-4.276-.08-4.581c-.263-1.026-1.098-1.917-2.143-2.287l-.317-.112-3.721-.011-3.722-.011-.998-.999L10.021 4l-2.641.003c-2.03.003-2.695.016-2.88.056M10.18 7l.999 1h3.961c2.604 0 4.011.015 4.109.042.211.059.469.268.61.496l.121.196v8.532l-.121.196c-.141.228-.399.437-.61.496-.1.028-2.491.041-7.289.041-6.824-.001-7.147-.004-7.3-.074a1.168 1.168 0 0 1-.531-.479l-.109-.186V6.734l.12-.193c.066-.106.185-.246.265-.31.284-.229.267-.227 2.615-.229L9.181 6l.999 1"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Food.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Food = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M11.32 2.044A6.03 6.03 0 0 0 7.022 4.66 6.228 6.228 0 0 0 6.017 7.5c-.026.257-.042.293-.188.44-.555.556-.867 1.403-.816 2.219.055.879.405 1.57 1.096 2.163.241.206.778.498.999.542l.128.025 1.427 4.279c1.556 4.666 1.495 4.514 1.876 4.71l.199.102h2.524l.199-.102c.381-.196.32-.045 1.875-4.705l1.425-4.273.229-.074c.879-.283 1.663-1.124 1.909-2.046.264-.988-.032-2.142-.728-2.84-.146-.147-.162-.183-.188-.44-.346-3.411-3.302-5.831-6.663-5.456m1.638 2.076a4.186 4.186 0 0 1 1.865 1.057c.342.342.569.671.801 1.16.232.491.337.952.372 1.642.038.743.085.84.602 1.228.473.355.524 1.073.107 1.49a.984.984 0 0 1-1.41 0A1.081 1.081 0 0 1 15 9.98c0-.651-.701-1.138-1.322-.919-.405.143-.621.435-.675.913-.058.517-.276.828-.678.965a.946.946 0 0 1-.665-.005c-.369-.126-.66-.538-.66-.934 0-.671-.691-1.162-1.322-.939-.406.143-.616.428-.678.92-.048.376-.157.618-.351.778a.998.998 0 0 1-1.354-.062 1.001 1.001 0 0 1 .107-1.49c.517-.388.564-.485.602-1.228.035-.69.14-1.151.372-1.642.232-.489.459-.818.801-1.16.598-.598 1.396-1 2.256-1.137.35-.056 1.139-.014 1.525.08M10.08 12.3c.11.133.641.422 1 .546.356.123.414.131.92.131s.564-.008.918-.13c.373-.129.735-.322.961-.512l.116-.098.189.144c.103.079.257.183.342.231.084.049.154.106.154.128 0 .022-.109.366-.241.763l-.241.724-1.946.707c-1.071.389-1.959.694-1.974.677-.034-.037-.959-2.814-.957-2.871.001-.022.119-.112.263-.2.143-.088.289-.192.324-.23.079-.086.108-.087.172-.01m3.28 4.41c0 .016-.244.763-.543 1.66L12.273 20h-.546l-.404-1.21c-.318-.952-.393-1.217-.352-1.245.066-.043 2.271-.855 2.339-.861.028-.002.05.009.05.026"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/Grid.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const Grid = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M3.58 2.047c-.721.138-1.381.801-1.536 1.545-.071.343-.057 2.044.019 2.342a2.058 2.058 0 0 0 1.25 1.4c.214.081.297.086 1.427.086 1.368 0 1.42-.01 1.899-.362.281-.207.557-.564.689-.889.089-.222.092-.268.092-1.429 0-1.13-.005-1.213-.086-1.427a2.042 2.042 0 0 0-1.418-1.251c-.295-.07-1.991-.081-2.336-.015m7.28 0c-.502.096-1.091.531-1.333.985-.221.415-.247.597-.247 1.712 0 .912.008 1.034.084 1.282.198.643.633 1.093 1.276 1.32.247.088.314.092 1.36.092s1.113-.004 1.36-.092c.634-.224 1.045-.642 1.26-1.282.096-.287.1-.337.1-1.313 0-.782-.014-1.068-.061-1.249-.19-.728-.828-1.326-1.556-1.459-.287-.052-1.963-.049-2.243.004m7.205.016c-.65.158-1.208.679-1.425 1.332-.08.241-.084.322-.072 1.4.012 1.086.017 1.157.105 1.374.201.499.658.956 1.158 1.159.222.089.268.092 1.429.092 1.13 0 1.213-.005 1.427-.086a2.054 2.054 0 0 0 1.251-1.418c.074-.313.087-1.993.018-2.324-.159-.762-.818-1.411-1.573-1.549-.354-.064-2.027-.05-2.318.02M3.56 9.324c-.482.094-1.106.574-1.335 1.025-.19.376-.224.625-.224 1.651 0 1.019.034 1.276.219 1.639.143.284.536.686.812.834.416.221.596.247 1.719.247.976 0 1.026-.004 1.313-.1.64-.215 1.058-.626 1.282-1.26.088-.247.092-.314.092-1.36s-.004-1.113-.092-1.36a1.967 1.967 0 0 0-.933-1.11c-.422-.225-.6-.25-1.691-.246-.54.003-1.063.021-1.162.04m7.204.019a2.04 2.04 0 0 0-1.404 1.371c-.071.226-.08.368-.08 1.286s.009 1.06.08 1.286a2.024 2.024 0 0 0 1.422 1.373c.337.087 2.099.087 2.436 0a2.037 2.037 0 0 0 1.441-1.441c.087-.337.087-2.099 0-2.436a2.037 2.037 0 0 0-1.441-1.441c-.326-.085-2.136-.083-2.454.002m7.287-.001a2.03 2.03 0 0 0-1.412 1.332c-.07.227-.079.371-.079 1.323 0 1.176.02 1.314.249 1.718.147.258.471.591.714.733.097.057.3.141.451.188.248.076.37.084 1.282.084 1.115 0 1.297-.026 1.712-.247.458-.244.877-.816.988-1.345.025-.119.044-.614.044-1.128 0-.514-.019-1.009-.044-1.128-.156-.747-.825-1.416-1.551-1.552-.337-.063-2.101-.047-2.354.022M3.476 16.618a2.073 2.073 0 0 0-1.413 1.448c-.076.298-.09 1.999-.019 2.342.157.75.798 1.391 1.548 1.548.331.069 2.011.056 2.324-.018a2.052 2.052 0 0 0 1.418-1.251c.079-.209.087-.318.098-1.342.012-1.03.006-1.136-.069-1.385a2.02 2.02 0 0 0-1.384-1.338c-.307-.08-2.216-.083-2.503-.004m7.284-.001a2.12 2.12 0 0 0-.877.503 1.83 1.83 0 0 0-.519.854c-.076.248-.084.37-.084 1.282 0 .775.014 1.061.061 1.242a2.044 2.044 0 0 0 1.531 1.457c.276.059 1.977.059 2.256.001.529-.111 1.101-.53 1.345-.988.221-.416.247-.596.247-1.719 0-.976-.004-1.026-.1-1.313-.125-.371-.255-.58-.524-.838a2.09 2.09 0 0 0-.876-.484c-.269-.072-2.199-.069-2.46.003m7.243.007c-.62.166-1.17.701-1.363 1.324-.072.234-.08.37-.079 1.346.001 1.034.005 1.099.094 1.35a2.018 2.018 0 0 0 1.429 1.294c.313.074 1.993.087 2.324.018a2.062 2.062 0 0 0 1.548-1.548c.069-.331.056-2.011-.018-2.324a2.042 2.042 0 0 0-1.433-1.468c-.297-.08-2.2-.074-2.502.008"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/H1.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const H1 = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M3 12.18V18h2.48v-4.8h5V18h2.44V6.36h-2.44v4.8h-5v-4.8H3v5.82m13.19-4.908-1.429.908-.001 1.09v1.091l.33-.207 1.34-.84a33.972 33.972 0 0 1 1.03-.634c.011 0 .02 2.097.02 4.66V18h2.44V6.36l-1.15.002-1.15.003-1.43.907"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|
package/src/H2.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SvgIcon } from '@mui/material';
|
|
2
|
+
import { IconProps } from '../types';
|
|
3
|
+
|
|
4
|
+
export const H2 = ({ ...props }: IconProps) => (
|
|
5
|
+
<SvgIcon {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M17.42 6.226c-.798.095-1.207.205-1.7.456-.412.211-.61.35-.913.645-.612.597-.94 1.338-1.029 2.324l-.028.31 1.175-.01L16.1 9.94l.01-.14c.074-1.071.797-1.695 1.89-1.63 1.046.062 1.684.745 1.631 1.743-.024.441-.129.735-.409 1.147-.345.507-.907 1.065-3.196 3.18l-2.144 1.98-.001.89-.001.89h8.28v-2h-2.443c-1.935 0-2.44-.01-2.43-.05.008-.027.42-.446.916-.93 2.133-2.08 2.399-2.349 2.733-2.763.567-.705.874-1.29 1.001-1.905.078-.382.081-1.082.005-1.439-.261-1.23-1.289-2.198-2.705-2.547-.53-.131-1.356-.195-1.817-.14M2 12.18V18h2.48v-4.8h5V18h2.44V6.36H9.48v4.8h-5v-4.8H2v5.82"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</SvgIcon>
|
|
11
|
+
);
|