@selfcommunity/react-theme-default 0.1.50-alpha.1 → 0.1.50-event.28
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/lib/cjs/components/MuiIcon.d.ts +1 -5
- package/lib/cjs/components/MuiIcon.js +2 -6
- package/lib/cjs/components/SCCreateEventButton.d.ts +12 -0
- package/lib/cjs/components/SCCreateEventButton.js +14 -0
- package/lib/cjs/components/SCDefaultHeaderContent.d.ts +9 -0
- package/lib/cjs/components/SCDefaultHeaderContent.js +11 -0
- package/lib/cjs/components/SCEvent.d.ts +35 -0
- package/lib/cjs/components/SCEvent.js +37 -0
- package/lib/cjs/components/SCEventForm.d.ts +104 -0
- package/lib/cjs/components/SCEventForm.js +107 -0
- package/lib/cjs/components/SCEventLocationWidget.d.ts +28 -0
- package/lib/cjs/components/SCEventLocationWidget.js +31 -0
- package/lib/cjs/fonts/community/icons.eot +0 -0
- package/lib/cjs/fonts/community/icons.svg +5 -1
- package/lib/cjs/fonts/community/icons.ttf +0 -0
- package/lib/cjs/fonts/community/icons.woff +0 -0
- package/lib/cjs/fonts/community/icons.woff2 +0 -0
- package/lib/cjs/fonts/community-icons.css +12 -6
- package/lib/cjs/index.d.ts +187 -5
- package/lib/cjs/index.js +14 -1
- package/lib/esm/components/MuiIcon.d.ts +1 -5
- package/lib/esm/components/MuiIcon.js +2 -6
- package/lib/esm/components/SCCreateEventButton.d.ts +12 -0
- package/lib/esm/components/SCCreateEventButton.js +12 -0
- package/lib/esm/components/SCDefaultHeaderContent.d.ts +9 -0
- package/lib/esm/components/SCDefaultHeaderContent.js +9 -0
- package/lib/esm/components/SCEvent.d.ts +35 -0
- package/lib/esm/components/SCEvent.js +35 -0
- package/lib/esm/components/SCEventForm.d.ts +104 -0
- package/lib/esm/components/SCEventForm.js +105 -0
- package/lib/esm/components/SCEventLocationWidget.d.ts +28 -0
- package/lib/esm/components/SCEventLocationWidget.js +29 -0
- package/lib/esm/fonts/community/icons.eot +0 -0
- package/lib/esm/fonts/community/icons.svg +5 -1
- package/lib/esm/fonts/community/icons.ttf +0 -0
- package/lib/esm/fonts/community/icons.woff +0 -0
- package/lib/esm/fonts/community/icons.woff2 +0 -0
- package/lib/esm/fonts/community-icons.css +12 -6
- package/lib/esm/index.d.ts +187 -5
- package/lib/esm/index.js +14 -1
- package/lib/umd/community/icons.eot +0 -0
- package/lib/umd/community/icons.svg +5 -1
- package/lib/umd/community/icons.ttf +0 -0
- package/lib/umd/community/icons.woff +0 -0
- package/lib/umd/community/icons.woff2 +0 -0
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -3,12 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
defaultProps: {
|
|
5
5
|
// Replace the `material-icons` default value.
|
|
6
|
-
baseClassName: 'community-icons'
|
|
7
|
-
|
|
8
|
-
styleOverrides: {
|
|
9
|
-
root: ({ theme }) => ({
|
|
10
|
-
fontSize: 'inherit'
|
|
11
|
-
})
|
|
6
|
+
baseClassName: 'community-icons',
|
|
7
|
+
fontSize: 'inherit'
|
|
12
8
|
}
|
|
13
9
|
};
|
|
14
10
|
exports.default = Component;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .MuiButton-startIcon': {
|
|
7
|
+
'& .MuiIcon-root': {
|
|
8
|
+
fontSize: '0.75rem !important'
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
})
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
exports.default = Component;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
borderRadius: any;
|
|
6
|
+
};
|
|
7
|
+
borderRadius: number;
|
|
8
|
+
paddingBottom: number;
|
|
9
|
+
overflow: string;
|
|
10
|
+
'& .SCBaseItemButton-image': {
|
|
11
|
+
marginRight: any;
|
|
12
|
+
'& .MuiAvatar-root': {
|
|
13
|
+
width: number;
|
|
14
|
+
height: number;
|
|
15
|
+
'& img': {
|
|
16
|
+
borderRadius: number;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
'& .SCBaseItemButton-text': {
|
|
21
|
+
fontSize: any;
|
|
22
|
+
'& .SCEvent-primary': {
|
|
23
|
+
'& p': {
|
|
24
|
+
fontWeight: any;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
'& .SCEvent-secondary': {
|
|
28
|
+
color: any;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
skeletonRoot: ({ theme }: any) => {};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export default Component;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
borderRadius: 0,
|
|
7
|
+
paddingBottom: 0,
|
|
8
|
+
overflow: 'visible',
|
|
9
|
+
[theme.breakpoints.up('sm')]: {
|
|
10
|
+
borderRadius: theme.shape.borderRadiusSm
|
|
11
|
+
},
|
|
12
|
+
'& .SCBaseItemButton-image': {
|
|
13
|
+
marginRight: theme.spacing(1.25),
|
|
14
|
+
'& .MuiAvatar-root': {
|
|
15
|
+
width: 100,
|
|
16
|
+
height: 60,
|
|
17
|
+
'& img': {
|
|
18
|
+
borderRadius: 0
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
'& .SCBaseItemButton-text': {
|
|
23
|
+
fontSize: theme.typography.fontSize,
|
|
24
|
+
'& .SCEvent-primary': {
|
|
25
|
+
'& p': {
|
|
26
|
+
fontWeight: theme.typography.fontWeightBold
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
'& .SCEvent-secondary': {
|
|
30
|
+
color: theme.palette.text.secondary
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}),
|
|
34
|
+
skeletonRoot: ({ theme }) => ({})
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
exports.default = Component;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCEventForm-cover': {
|
|
5
|
+
position: string;
|
|
6
|
+
height: number;
|
|
7
|
+
minHeight: number;
|
|
8
|
+
'& .SCEventForm-upload-event-cover-root': {
|
|
9
|
+
position: string;
|
|
10
|
+
right: any;
|
|
11
|
+
bottom: any;
|
|
12
|
+
padding: any;
|
|
13
|
+
minWidth: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
'& .SCEventForm-header': {
|
|
17
|
+
marginTop: any;
|
|
18
|
+
color: any;
|
|
19
|
+
};
|
|
20
|
+
'& .SCEventForm-form': {
|
|
21
|
+
'& .SCEventForm-picker': {
|
|
22
|
+
width: string;
|
|
23
|
+
};
|
|
24
|
+
'& .MuiTextField-root, .SCEventForm-frequency': {
|
|
25
|
+
marginBottom: any;
|
|
26
|
+
};
|
|
27
|
+
'& .MuiButton-text': {
|
|
28
|
+
justifyContent: string;
|
|
29
|
+
paddingLeft: any;
|
|
30
|
+
'&:hover': {
|
|
31
|
+
backgroundColor: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
'& .SCEventForm-date-time': {
|
|
36
|
+
display: string;
|
|
37
|
+
alignItems: string;
|
|
38
|
+
justifyContent: string;
|
|
39
|
+
gap: any;
|
|
40
|
+
};
|
|
41
|
+
'& .SCEventForm-error': {
|
|
42
|
+
color: any;
|
|
43
|
+
};
|
|
44
|
+
'& .SCEventForm-switch': {
|
|
45
|
+
'& .MuiButtonBase-root': {
|
|
46
|
+
'&.Mui-checked': {
|
|
47
|
+
color: any;
|
|
48
|
+
'& + .MuiSwitch-track': {
|
|
49
|
+
backgroundColor: any;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
'& .SCEventForm-switch-label': {
|
|
55
|
+
fontWeight: any;
|
|
56
|
+
display: string;
|
|
57
|
+
alignItems: string;
|
|
58
|
+
justifyContent: string;
|
|
59
|
+
gap: any;
|
|
60
|
+
};
|
|
61
|
+
'& .SCEventForm-active': {
|
|
62
|
+
color: any;
|
|
63
|
+
};
|
|
64
|
+
'& .SCEventForm-privacy-section': {
|
|
65
|
+
marginTop: any;
|
|
66
|
+
justifyContent: string;
|
|
67
|
+
'& .SCEventForm-privacy-section-info': {
|
|
68
|
+
marginBottom: any;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
'& .SCEventForm-visibility-section-info': {
|
|
72
|
+
marginTop: any;
|
|
73
|
+
};
|
|
74
|
+
'& .MuiDivider-root': {
|
|
75
|
+
marginTop: any;
|
|
76
|
+
border: string;
|
|
77
|
+
};
|
|
78
|
+
'& .MuiDialogTitle-root': {
|
|
79
|
+
'& span': {
|
|
80
|
+
flexGrow: number;
|
|
81
|
+
textAlign: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
'& .SCEventForm-event-address-root': {
|
|
85
|
+
backgroundColor: any;
|
|
86
|
+
borderRadius: number;
|
|
87
|
+
'& .SCEventForm-event-address-tabs': {
|
|
88
|
+
padding: any;
|
|
89
|
+
'& .MuiTabs-indicator': {
|
|
90
|
+
bottom: any;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
'& .SCEventForm-event-address-tab': {
|
|
94
|
+
minHeight: number;
|
|
95
|
+
textTransform: string;
|
|
96
|
+
};
|
|
97
|
+
'& .SCEventForm-event-address-tab-content': {
|
|
98
|
+
padding: any;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
export default Component;
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const system_1 = require("@mui/system");
|
|
4
|
+
const Component = {
|
|
5
|
+
styleOverrides: {
|
|
6
|
+
root: ({ theme }) => ({
|
|
7
|
+
'& .SCEventForm-cover': {
|
|
8
|
+
position: 'relative',
|
|
9
|
+
height: 120,
|
|
10
|
+
minHeight: 120,
|
|
11
|
+
'& .SCEventForm-upload-event-cover-root': {
|
|
12
|
+
position: 'absolute',
|
|
13
|
+
right: theme.spacing(2),
|
|
14
|
+
bottom: theme.spacing(1),
|
|
15
|
+
padding: theme.spacing(1),
|
|
16
|
+
minWidth: 'auto'
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
'& .SCEventForm-header': {
|
|
20
|
+
marginTop: theme.spacing(4.5),
|
|
21
|
+
color: theme.palette.text.secondary
|
|
22
|
+
},
|
|
23
|
+
'& .SCEventForm-form': {
|
|
24
|
+
'& .SCEventForm-picker': {
|
|
25
|
+
width: '50%'
|
|
26
|
+
},
|
|
27
|
+
'& .MuiTextField-root, .SCEventForm-frequency': {
|
|
28
|
+
marginBottom: theme.spacing(2)
|
|
29
|
+
},
|
|
30
|
+
'& .MuiButton-text': {
|
|
31
|
+
justifyContent: 'start',
|
|
32
|
+
paddingLeft: theme.spacing(1),
|
|
33
|
+
'&:hover': {
|
|
34
|
+
backgroundColor: 'transparent'
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
'& .SCEventForm-date-time': {
|
|
39
|
+
display: 'flex',
|
|
40
|
+
alignItems: 'center',
|
|
41
|
+
justifyContent: 'space-between',
|
|
42
|
+
gap: theme.spacing(1)
|
|
43
|
+
},
|
|
44
|
+
'& .SCEventForm-error': {
|
|
45
|
+
color: theme.palette.error.main
|
|
46
|
+
},
|
|
47
|
+
'& .SCEventForm-switch': {
|
|
48
|
+
'& .MuiButtonBase-root': {
|
|
49
|
+
'&.Mui-checked': {
|
|
50
|
+
color: theme.palette.secondary.main,
|
|
51
|
+
'& + .MuiSwitch-track': {
|
|
52
|
+
backgroundColor: theme.palette.secondary.main
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
'& .SCEventForm-switch-label': {
|
|
58
|
+
fontWeight: theme.typography.fontWeightMedium,
|
|
59
|
+
display: 'flex',
|
|
60
|
+
alignItems: 'center',
|
|
61
|
+
justifyContent: 'center',
|
|
62
|
+
gap: theme.spacing(0.5)
|
|
63
|
+
},
|
|
64
|
+
'& .SCEventForm-active': {
|
|
65
|
+
color: theme.palette.secondary.main
|
|
66
|
+
},
|
|
67
|
+
'& .SCEventForm-privacy-section': {
|
|
68
|
+
marginTop: theme.spacing(2),
|
|
69
|
+
justifyContent: 'center',
|
|
70
|
+
'& .SCEventForm-privacy-section-info': {
|
|
71
|
+
marginBottom: theme.spacing(2)
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
'& .SCEventForm-visibility-section-info': {
|
|
75
|
+
marginTop: theme.spacing(1)
|
|
76
|
+
},
|
|
77
|
+
'& .MuiDivider-root': {
|
|
78
|
+
marginTop: theme.spacing(2),
|
|
79
|
+
border: `1px solid ${(0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`
|
|
80
|
+
},
|
|
81
|
+
'& .MuiDialogTitle-root': {
|
|
82
|
+
'& span': {
|
|
83
|
+
flexGrow: 1,
|
|
84
|
+
textAlign: 'center'
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
'& .SCEventForm-event-address-root': {
|
|
88
|
+
backgroundColor: theme.palette.grey['A200'],
|
|
89
|
+
borderRadius: 5,
|
|
90
|
+
'& .SCEventForm-event-address-tabs': {
|
|
91
|
+
padding: theme.spacing(2, 2, 0, 2),
|
|
92
|
+
'& .MuiTabs-indicator': {
|
|
93
|
+
bottom: theme.spacing(1.5)
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
'& .SCEventForm-event-address-tab': {
|
|
97
|
+
minHeight: 0,
|
|
98
|
+
textTransform: 'none'
|
|
99
|
+
},
|
|
100
|
+
'& .SCEventForm-event-address-tab-content': {
|
|
101
|
+
padding: theme.spacing(0.5, 2, 2, 2)
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
})
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
exports.default = Component;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
width: number;
|
|
6
|
+
};
|
|
7
|
+
'& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title': {
|
|
8
|
+
fontWeight: any;
|
|
9
|
+
};
|
|
10
|
+
'& .SCEventLocationWidget-map': {
|
|
11
|
+
marginBottom: any;
|
|
12
|
+
height: number;
|
|
13
|
+
width: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
skeletonRoot: ({ theme }: any) => {
|
|
17
|
+
[x: number]: {
|
|
18
|
+
width: number;
|
|
19
|
+
};
|
|
20
|
+
'& .SCEventLocationWidget-skeleton-map': {
|
|
21
|
+
margin: any;
|
|
22
|
+
height: number;
|
|
23
|
+
width: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export default Component;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
[theme.breakpoints.up('sm')]: {
|
|
7
|
+
width: 470
|
|
8
|
+
},
|
|
9
|
+
'& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title': {
|
|
10
|
+
fontWeight: theme.typography.fontWeightBold
|
|
11
|
+
// marginBottom: theme.spacing(0.5)
|
|
12
|
+
},
|
|
13
|
+
'& .SCEventLocationWidget-map': {
|
|
14
|
+
marginBottom: theme.spacing(1),
|
|
15
|
+
height: 248,
|
|
16
|
+
width: '100%'
|
|
17
|
+
}
|
|
18
|
+
}),
|
|
19
|
+
skeletonRoot: ({ theme }) => ({
|
|
20
|
+
[theme.breakpoints.up('sm')]: {
|
|
21
|
+
width: 470
|
|
22
|
+
},
|
|
23
|
+
'& .SCEventLocationWidget-skeleton-map': {
|
|
24
|
+
margin: theme.spacing(1, 0, 1, 0),
|
|
25
|
+
height: 248,
|
|
26
|
+
width: '100%'
|
|
27
|
+
}
|
|
28
|
+
})
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
exports.default = Component;
|
|
Binary file
|
|
@@ -126,8 +126,10 @@
|
|
|
126
126
|
<glyph unicode="" glyph-name="photo_file" data-tags="photo_file" d="M849.067 797.867h-209.067c-4.267 0-8.533 4.267-8.533 4.267l-34.133 51.2c-17.067 21.333-42.667 38.4-68.267 38.4h-145.067c-72.533 0-128-59.733-128-128v-89.6h-64c-76.8 0-145.067-59.733-145.067-132.267v-405.333c0-72.533 64-132.267 145.067-132.267h520.533c76.8 0 145.067 59.733 145.067 132.267v76.8c68.267 4.267 123.733 59.733 123.733 128v324.267c-4.267 72.533-64 132.267-132.267 132.267zM712.533 72.534h-520.533c-38.4 0-64 25.6-64 59.733v409.6c0 34.133 29.867 59.733 64 59.733h64v-260.267c0-72.533 59.733-128 128-128h396.8v-81.067c0-34.133-29.867-59.733-68.267-59.733zM904.533 341.334c0-34.133-25.6-59.733-59.733-59.733h-460.8c-17.067 0-34.133 8.533-42.667 21.333l132.267 145.067c4.267 4.267 8.533 4.267 12.8 0l51.2-55.467c12.8-12.8 29.867-12.8 38.4 0l166.4 187.733c4.267 4.267 8.533 4.267 12.8 0l153.6-166.4v-72.533zM904.533 503.467l-106.667 115.2c-25.6 29.867-68.267 29.867-93.867 0l-149.333-162.133-34.133 38.4c-25.6 29.867-68.267 29.867-93.867 0l-106.667-119.467v388.267c0 34.133 25.6 59.733 59.733 59.733h145.067c4.267 0 8.533 0 8.533-4.267l38.4-55.467c21.333-21.333 46.933-38.4 68.267-38.4h209.067c34.133 0 59.733-25.6 59.733-59.733v-162.133zM512 640c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667z" />
|
|
127
127
|
<glyph unicode="" glyph-name="groups" data-tags="group" d="M686.933 640c0-93.867-76.8-170.667-170.667-170.667s-170.667 76.8-170.667 170.667 76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667zM516.267 742.4c-59.733 0-102.4-46.933-102.4-102.4s46.933-102.4 102.4-102.4 102.4 46.933 102.4 102.4-46.933 102.4-102.4 102.4zM298.667 520.534c0-68.267-55.467-128-128-128s-128 55.467-128 128 55.467 128 128 128 128-59.733 128-128zM170.667 597.334c-42.667 0-76.8-34.133-76.8-76.8s34.133-76.8 76.8-76.8 76.8 34.133 76.8 76.8-34.133 76.8-76.8 76.8zM981.333 520.534c0-68.267-55.467-128-128-128-68.267 0-128 55.467-128 128s55.467 128 128 128c68.267 0 128-59.733 128-128zM853.333 597.334c-42.667 0-76.8-34.133-76.8-76.8s34.133-76.8 76.8-76.8c42.667 0 76.8 34.133 76.8 76.8s-34.133 76.8-76.8 76.8zM610.133 375.467h-183.467c-93.867 0-174.933-76.8-174.933-174.933v-123.733c0-12.8 8.533-29.867 29.867-29.867 12.8 0 29.867 8.533 29.867 29.867v123.733c0 64 55.467 115.2 115.2 115.2h183.467c64 0 115.2-55.467 115.2-115.2v-123.733c0-12.8 8.533-29.867 29.867-29.867 12.8 0 29.867 8.533 29.867 29.867v123.733c0 93.867-81.067 174.933-174.933 174.933zM998.4 42.667c-17.067 0-34.133 12.8-34.133 34.133v98.133c0 42.667-34.133 76.8-76.8 76.8h-34.133c-17.067 0-34.133 12.8-34.133 34.133s12.8 34.133 34.133 34.133h34.133c76.8 0 140.8-64 140.8-140.8v-110.933c-4.267-12.8-12.8-21.333-29.867-25.6v0zM34.133 42.667c-17.067 0-34.133 12.8-34.133 34.133v98.133c0 76.8 59.733 140.8 140.8 140.8h34.133c21.333 0 34.133-17.067 34.133-34.133s-12.8-34.133-34.133-34.133h-29.867c-42.667 0-76.8-34.133-76.8-72.533v-98.133c0-21.333-17.067-34.133-34.133-34.133v0z" />
|
|
128
128
|
<glyph unicode="" glyph-name="private" data-tags="private" d="M768 42.667v469.333h-512v-469.333h512zM384 686.934v-89.6h256v89.6c0 76.8-59.733 136.533-128 136.533s-128-59.733-128-136.533v0zM768 597.334c46.933 0 85.333-38.4 85.333-89.6v-460.8c0-51.2-38.4-89.6-85.333-89.6h-512c-46.933 0-85.333 42.667-85.333 89.6v460.8c0 46.933 38.4 89.6 85.333 89.6h42.667v89.6c0 123.733 93.867 221.867 213.333 221.867s213.333-98.133 213.333-221.867v-89.6h42.667zM516.267 183.467c-42.667 0-81.067 42.667-81.067 89.6s38.4 89.6 81.067 89.6 81.067-42.667 81.067-89.6-38.4-89.6-81.067-89.6v0z" />
|
|
129
|
+
<glyph unicode="" glyph-name="calendar_off" data-tags="calendar_off" d="M320 533.334c17.067 0 29.867 8.533 29.867 29.867v85.333h247.467c17.067 0 29.867 8.533 29.867 29.867s-8.533 29.867-29.867 29.867h-251.733v72.533c0 17.067-8.533 29.867-25.6 29.867s-29.867-12.8-29.867-29.867v-213.333c0-17.067 12.8-34.133 29.867-34.133zM183.467 426.667h217.6l51.2 51.2h-268.8v140.8c0 17.067 8.533 29.867 29.867 29.867s29.867 8.533 29.867 29.867-8.533 29.867-29.867 29.867c-46.933 0-85.333-38.4-85.333-85.333v-469.333l55.467 55.467v217.6zM725.333 755.2v25.6c0 17.067-8.533 29.867-25.6 29.867s-29.867-8.533-29.867-29.867v-85.333l55.467 55.467zM968.533 883.2c-12.8 12.8-34.133 12.8-46.933 0l-866.133-866.133c-12.8-12.8-12.8-34.133 0-46.933s34.133-12.8 46.933 0l76.8 81.067c8.533 0 21.333-8.533 34.133-8.533h597.333c46.933 0 85.333 38.4 85.333 85.333v490.667c0 38.4-34.133 72.533-72.533 81.067l145.067 145.067c12.8 8.533 12.8 25.6 0 38.4zM840.533 128c-4.267-17.067-12.8-29.867-29.867-29.867h-580.267l93.867 98.133 226.133 230.4h290.133v-298.667zM844.8 614.4v-136.533h-243.2l72.533 72.533c4.267-8.533 12.8-12.8 25.6-12.8s29.867 8.533 29.867 29.867v38.4l38.4 38.4h46.933c17.067 0 29.867-8.533 29.867-29.867z" />
|
|
129
130
|
<glyph unicode="" glyph-name="magic_wand" data-tags="magic_wand" d="M964.267 456.534l-102.4 136.533 55.467 162.133c8.533 21.333 0 46.933-12.8 64-17.067 17.067-42.667 21.333-64 12.8l-162.133-55.467-136.533 102.4c-17.067 12.8-42.667 17.067-64 4.267-21.333-8.533-34.133-29.867-34.133-55.467v-170.667c0 0-136.533-98.133-136.533-98.133-17.067-12.8-29.867-34.133-25.6-59.733 0-12.8 8.533-25.6 17.067-34.133s17.067-12.8 25.6-17.067l119.467-38.4-384-366.933c-17.067-17.067-17.067-42.667 0-59.733s21.333-12.8 29.867-12.8 21.333 0 29.867 12.8l375.467 375.467 38.4-102.4c0-8.533 8.533-17.067 17.067-25.6s21.333-17.067 34.133-17.067c0 0 8.533 0 8.533 0 21.333 0 38.4 8.533 51.2 25.6l98.133 123.733h170.667c21.333 0 42.667 8.533 55.467 29.867 8.533 21.333 8.533 46.933-4.267 64zM721.067 448c-12.8 0-25.6-8.533-34.133-17.067l-85.333-119.467-42.667 136.533c0 12.8-12.8 25.6-29.867 29.867l-140.8 42.667 119.467 85.333c12.8 8.533 17.067 21.333 17.067 34.133v145.067s115.2-85.333 115.2-85.333c12.8-8.533 25.6-8.533 38.4-4.267l136.533 46.933-46.933-136.533c-4.267-12.8 0-29.867 4.267-38.4l85.333-115.2h-145.067z" />
|
|
130
|
-
<glyph unicode="
|
|
131
|
+
<glyph unicode="" glyph-name="frequency" data-tags="frequency" d="M204.8 567.467c42.667 55.467 106.667 85.333 174.933 85.333h179.2l-51.2-51.2c-12.8-12.8-12.8-29.867 0-42.667 0 0 0 0 0 0 12.8-12.8 34.133-12.8 46.933 0v0s106.667 106.667 106.667 106.667c12.8 12.8 12.8 34.133 0 46.933v0s0 0 0 0l-106.667 106.667c-12.8 12.8-34.133 12.8-46.933 0 0 0 0 0 0 0-12.8-12.8-12.8-29.867 0-42.667 0 0 0 0 0 0l51.2-51.2h-179.2c-157.867 0-285.867-128-290.133-285.867 0-89.6 38.4-170.667 110.933-226.133 12.8-12.8 34.133-8.533 42.667 4.267 12.8 12.8 8.533 34.133-4.267 46.933-98.133 76.8-115.2 217.6-38.4 315.733zM819.2 652.8c-12.8 12.8-34.133 8.533-46.933-4.267 0 0 0 0 0 0-12.8-12.8-8.533-34.133 4.267-42.667 0 0 0 0 0 0 98.133-76.8 115.2-217.6 38.4-315.733-42.667-55.467-106.667-85.333-174.933-85.333h-179.2l51.2 51.2c12.8 12.8 12.8 34.133 0 46.933s-34.133 12.8-46.933 0c0 0 0 0 0 0v0s-106.667-106.667-106.667-106.667c-8.533-4.267-12.8-12.8-12.8-25.6s0-17.067 12.8-25.6l106.667-106.667c12.8-12.8 34.133-12.8 46.933 0s12.8 34.133 0 46.933l-51.2 51.2h179.2c157.867 0 285.867 128 285.867 285.867 0 89.6-38.4 170.667-110.933 226.133z" />
|
|
132
|
+
<glyph unicode="" glyph-name="frequency" data-tags="frequency" d="M204.8 567.467c42.667 55.467 106.667 85.333 174.933 85.333h179.2l-51.2-51.2c-12.8-12.8-12.8-29.867 0-42.667 0 0 0 0 0 0 12.8-12.8 34.133-12.8 46.933 0v0s106.667 106.667 106.667 106.667c12.8 12.8 12.8 34.133 0 46.933v0s0 0 0 0l-106.667 106.667c-12.8 12.8-34.133 12.8-46.933 0 0 0 0 0 0 0-12.8-12.8-12.8-29.867 0-42.667 0 0 0 0 0 0l51.2-51.2h-179.2c-157.867 0-285.867-128-290.133-285.867 0-89.6 38.4-170.667 110.933-226.133 12.8-12.8 34.133-8.533 42.667 4.267 12.8 12.8 8.533 34.133-4.267 46.933-98.133 76.8-115.2 217.6-38.4 315.733zM819.2 652.8c-12.8 12.8-34.133 8.533-46.933-4.267 0 0 0 0 0 0-12.8-12.8-8.533-34.133 4.267-42.667 0 0 0 0 0 0 98.133-76.8 115.2-217.6 38.4-315.733-42.667-55.467-106.667-85.333-174.933-85.333h-179.2l51.2 51.2c12.8 12.8 12.8 34.133 0 46.933s-34.133 12.8-46.933 0c0 0 0 0 0 0v0s-106.667-106.667-106.667-106.667c-8.533-4.267-12.8-12.8-12.8-25.6s0-17.067 12.8-25.6l106.667-106.667c12.8-12.8 34.133-12.8 46.933 0s12.8 34.133 0 46.933l-51.2 51.2h179.2c157.867 0 285.867 128 285.867 285.867 0 89.6-38.4 170.667-110.933 226.133z" />
|
|
131
133
|
<glyph unicode="zoom_out_map" glyph-name="zoom_out_map" data-tags="zoom_out_map" d="M977.067 874.667c-4.267 8.533-8.533 12.8-17.067 17.067-4.267 0-8.533 4.267-12.8 4.267h-192c-17.067 0-38.4-12.8-38.4-38.4s12.8-38.4 38.4-38.4h106.667l-226.133-226.133c-12.8-12.8-12.8-38.4 0-51.2 4.267-4.267 12.8-8.533 25.6-8.533 8.533 0 17.067 4.267 25.6 8.533l217.6 230.4v-102.4c0-17.067 12.8-38.4 38.4-38.4s38.4 12.8 38.4 38.4v192c0 4.267-4.267 8.533-4.267 12.8zM392.533 307.2c-12.8 12.8-38.4 12.8-51.2 0l-226.133-226.133v106.667c0 17.067-12.8 38.4-38.4 38.4s-34.133-21.333-34.133-42.667v-192c0-4.267 0-8.533 4.267-12.8 4.267-8.533 8.533-12.8 17.067-17.067 4.267 0 8.533-4.267 12.8-4.267h192c17.067 0 38.4 12.8 38.4 38.4s-17.067 34.133-38.4 34.133h-102.4l226.133 226.133c12.8 17.067 12.8 38.4 0 51.2zM128 435.2c-17.067 0-38.4 12.8-38.4 38.4v243.2c0 72.533 55.467 128 128 132.267h238.933c17.067 0 38.4-12.8 38.4-38.4s-12.8-38.4-34.133-38.4h-234.667c-34.133 0-64-25.6-55.467-55.467v-243.2c-4.267-17.067-21.333-38.4-42.667-38.4zM797.867-0h-285.867c-17.067 0-38.4 12.8-38.4 38.4s12.8 38.4 38.4 38.4h285.867c34.133 0 55.467 29.867 55.467 64v243.2c0 17.067 12.8 38.4 38.4 38.4s38.4-12.8 38.4-38.4v-243.2c0-76.8-59.733-136.533-132.267-140.8z" />
|
|
132
134
|
<glyph unicode="zoom_out" glyph-name="zoom_out" data-tags="zoom_out" d="M507.733 580.267h-209.067c-21.333 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h213.333c21.333 0 42.667 17.067 42.667 42.667s-25.6 42.667-46.933 42.667zM968.533 25.6l-285.867 290.133c110.933 136.533 106.667 345.6-25.6 477.867v0c-140.8 136.533-371.2 136.533-507.733 0-68.267-68.267-106.667-157.867-106.667-256s38.4-183.467 106.667-251.733c68.267-68.267 162.133-106.667 256-106.667v0c81.067 0 162.133 25.6 217.6 72.533l290.133-285.867c4.267-4.267 17.067-8.533 25.6-8.533 12.8 0 21.333 4.267 25.6 8.533 21.333 21.333 21.333 42.667 4.267 59.733zM405.333 264.534c-76.8 0-145.067 25.6-196.267 81.067s-81.067 119.467-81.067 192 25.6 145.067 81.067 196.267 128 81.067 196.267 81.067 145.067-25.6 196.267-81.067v0c55.467-51.2 81.067-123.733 81.067-196.267s-25.6-140.8-81.067-196.267c-55.467-55.467-119.467-76.8-196.267-76.8v0z" />
|
|
133
135
|
<glyph unicode="zoom_in" glyph-name="zoom_in" data-tags="zoom_in" d="M968.533 25.6l-285.867 290.133c110.933 136.533 106.667 345.6-25.6 477.867v0c-140.8 136.533-371.2 136.533-507.733 0-68.267-68.267-106.667-157.867-106.667-256s38.4-183.467 106.667-251.733c68.267-68.267 162.133-106.667 256-106.667v0c81.067 0 162.133 25.6 217.6 72.533l290.133-285.867c4.267-4.267 17.067-8.533 25.6-8.533 12.8 0 21.333 4.267 25.6 8.533 21.333 21.333 21.333 42.667 4.267 59.733zM405.333 264.534c-76.8 0-145.067 25.6-196.267 81.067s-81.067 119.467-81.067 192 25.6 145.067 81.067 196.267 128 81.067 196.267 81.067 145.067-25.6 196.267-81.067v0c55.467-51.2 81.067-123.733 81.067-196.267s-25.6-140.8-81.067-196.267c-55.467-55.467-119.467-76.8-196.267-76.8v0zM512 576h-64v68.267c0 21.333-17.067 42.667-42.667 42.667s-42.667-21.333-42.667-42.667v-64h-59.733c-21.333 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h64v-64c0-21.333 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v64h59.733c21.333 0 42.667 17.067 42.667 42.667 0 29.867-21.333 38.4-42.667 38.4v0z" />
|
|
@@ -180,6 +182,7 @@
|
|
|
180
182
|
<glyph unicode="help_outline" glyph-name="help_outline" data-tags="help_outline" d="M106.667 426.667c0 221.867 179.2 401.067 401.067 401.067 226.133 0 405.333-179.2 405.333-401.067s-179.2-401.067-401.067-401.067-405.333 179.2-405.333 401.067zM42.667 426.667c0-260.267 209.067-469.333 469.333-469.333s469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333-469.333-209.067-469.333-469.333zM597.333 170.667c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM507.733 759.467c-123.733 0-226.133-89.6-226.133-204.8h115.2c0 55.467 51.2 102.4 115.2 102.4s115.2-46.933 115.2-102.4c0-102.4-170.667-89.6-170.667-256h115.2c0 115.2 170.667 128 170.667 256-4.267 115.2-106.667 204.8-234.667 204.8z" />
|
|
181
183
|
<glyph unicode="groups" glyph-name="groups" data-tags="group" d="M686.933 640c0-93.867-76.8-170.667-170.667-170.667s-170.667 76.8-170.667 170.667 76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667zM516.267 742.4c-59.733 0-102.4-46.933-102.4-102.4s46.933-102.4 102.4-102.4 102.4 46.933 102.4 102.4-46.933 102.4-102.4 102.4zM298.667 520.534c0-68.267-55.467-128-128-128s-128 55.467-128 128 55.467 128 128 128 128-59.733 128-128zM170.667 597.334c-42.667 0-76.8-34.133-76.8-76.8s34.133-76.8 76.8-76.8 76.8 34.133 76.8 76.8-34.133 76.8-76.8 76.8zM981.333 520.534c0-68.267-55.467-128-128-128-68.267 0-128 55.467-128 128s55.467 128 128 128c68.267 0 128-59.733 128-128zM853.333 597.334c-42.667 0-76.8-34.133-76.8-76.8s34.133-76.8 76.8-76.8c42.667 0 76.8 34.133 76.8 76.8s-34.133 76.8-76.8 76.8zM610.133 375.467h-183.467c-93.867 0-174.933-76.8-174.933-174.933v-123.733c0-12.8 8.533-29.867 29.867-29.867 12.8 0 29.867 8.533 29.867 29.867v123.733c0 64 55.467 115.2 115.2 115.2h183.467c64 0 115.2-55.467 115.2-115.2v-123.733c0-12.8 8.533-29.867 29.867-29.867 12.8 0 29.867 8.533 29.867 29.867v123.733c0 93.867-81.067 174.933-174.933 174.933zM998.4 42.667c-17.067 0-34.133 12.8-34.133 34.133v98.133c0 42.667-34.133 76.8-76.8 76.8h-34.133c-17.067 0-34.133 12.8-34.133 34.133s12.8 34.133 34.133 34.133h34.133c76.8 0 140.8-64 140.8-140.8v-110.933c-4.267-12.8-12.8-21.333-29.867-25.6v0zM34.133 42.667c-17.067 0-34.133 12.8-34.133 34.133v98.133c0 76.8 59.733 140.8 140.8 140.8h34.133c21.333 0 34.133-17.067 34.133-34.133s-12.8-34.133-34.133-34.133h-29.867c-42.667 0-76.8-34.133-76.8-72.533v-98.133c0-21.333-17.067-34.133-34.133-34.133v0z" />
|
|
182
184
|
<glyph unicode="google" glyph-name="google" data-tags="google" d="M763.733 465.067h-243.2v-98.133h140.8c-12.8-59.733-68.267-98.133-140.8-98.133-85.333 0-153.6 68.267-153.6 153.6s68.267 153.6 153.6 153.6c38.4 0 68.267-12.8 93.867-29.867l72.533 72.533c-42.667 42.667-106.667 68.267-174.933 68.267-136.533-4.267-256-119.467-256-260.267s119.467-256 260.267-256c132.267 0 247.467 89.6 247.467 256 8.533 12.8 0 25.6 0 38.4v0zM507.733 896c-256 0-465.067-213.333-465.067-469.333s209.067-469.333 465.067-469.333c260.267 0 473.6 213.333 473.6 469.333s-213.333 469.333-473.6 469.333zM507.733 21.334c-221.867 0-405.333 183.467-405.333 405.333s183.467 405.333 405.333 405.333 405.333-183.467 405.333-405.333-179.2-405.333-405.333-405.333z" />
|
|
185
|
+
<glyph unicode="frequency" glyph-name="frequency" data-tags="frequency" d="M204.8 567.467c42.667 55.467 106.667 85.333 174.933 85.333h179.2l-51.2-51.2c-12.8-12.8-12.8-29.867 0-42.667 0 0 0 0 0 0 12.8-12.8 34.133-12.8 46.933 0v0s106.667 106.667 106.667 106.667c12.8 12.8 12.8 34.133 0 46.933v0s0 0 0 0l-106.667 106.667c-12.8 12.8-34.133 12.8-46.933 0 0 0 0 0 0 0-12.8-12.8-12.8-29.867 0-42.667 0 0 0 0 0 0l51.2-51.2h-179.2c-157.867 0-285.867-128-290.133-285.867 0-89.6 38.4-170.667 110.933-226.133 12.8-12.8 34.133-8.533 42.667 4.267 12.8 12.8 8.533 34.133-4.267 46.933-98.133 76.8-115.2 217.6-38.4 315.733zM819.2 652.8c-12.8 12.8-34.133 8.533-46.933-4.267 0 0 0 0 0 0-12.8-12.8-8.533-34.133 4.267-42.667 0 0 0 0 0 0 98.133-76.8 115.2-217.6 38.4-315.733-42.667-55.467-106.667-85.333-174.933-85.333h-179.2l51.2 51.2c12.8 12.8 12.8 34.133 0 46.933s-34.133 12.8-46.933 0c0 0 0 0 0 0v0s-106.667-106.667-106.667-106.667c-8.533-4.267-12.8-12.8-12.8-25.6s0-17.067 12.8-25.6l106.667-106.667c12.8-12.8 34.133-12.8 46.933 0s12.8 34.133 0 46.933l-51.2 51.2h179.2c157.867 0 285.867 128 285.867 285.867 0 89.6-38.4 170.667-110.933 226.133z" />
|
|
183
186
|
<glyph unicode="format_underline" glyph-name="format_underline" data-tags="format_underline" d="M499.2 89.6c174.933 0 320 140.8 320 320v452.267c-4.267 21.333-17.067 34.133-42.667 34.133s-34.133-12.8-34.133-34.133v-456.533c0-140.8-115.2-256-256-256-132.267 8.533-247.467 119.467-247.467 260.267v452.267c4.267 21.333-8.533 34.133-29.867 34.133s-34.133-12.8-34.133-34.133v-456.533c0-174.933 140.8-315.733 324.267-315.733zM878.933 25.6h-733.867c-21.333 0-34.133-12.8-34.133-34.133s12.8-34.133 34.133-34.133h738.133c21.333 0 34.133 12.8 34.133 34.133-4.267 21.333-17.067 34.133-38.4 34.133z" />
|
|
184
187
|
<glyph unicode="format_superscript" glyph-name="format_superscript" data-tags="format_superscript" d="M384 896h-384v-174.933c0-21.333 12.8-38.4 29.867-38.4h21.333c21.333 0 34.133 17.067 34.133 38.4v89.6h213.333v-768h-89.6c-21.333 0-38.4-17.067-38.4-42.667v-4.267c0-21.333 17.067-38.4 38.4-38.4h268.8c21.333 0 38.4 17.067 34.133 42.667v4.267c0 21.333-17.067 38.4-38.4 38.4h-89.6v768h213.333v-89.6c0-21.333 12.8-38.4 29.867-38.4h21.333c21.333 0 34.133 17.067 34.133 38.4v174.933h-298.667zM1011.2 896c-8.533 8.533-17.067 12.8-25.6 12.8s-12.8 0-17.067-4.267l-149.333-132.267c-4.267-4.267-8.533-12.8-8.533-21.333s4.267-12.8 8.533-21.333c4.267-4.267 12.8-8.533 21.333-8.533 17.067 0 46.933 21.333 102.4 59.733v-281.6c0-12.8 4.267-25.6 12.8-38.4 8.533-8.533 17.067-12.8 29.867-12.8 25.6 0 38.4 25.6 38.4 64v349.867c0 17.067-4.267 25.6-12.8 34.133z" />
|
|
185
188
|
<glyph unicode="format_subscript" glyph-name="format_subscript" data-tags="format_subscript" d="M558.933 42.667h-89.6v768h298.667v-89.6c0-21.333 17.067-38.4 38.4-38.4h8.533c21.333 0 38.4 17.067 38.4 38.4v174.933h-853.333v-174.933c0-21.333 17.067-38.4 38.4-38.4h8.533c21.333 0 38.4 17.067 38.4 38.4v89.6h298.667v-768h-89.6c-21.333 0-38.4-17.067-38.4-42.667v-4.267c0-21.333 17.067-38.4 38.4-38.4h268.8c21.333 0 38.4 17.067 34.133 42.667v4.267c0 21.333-17.067 38.4-38.4 38.4zM994.133 29.867c-8.533 4.267-17.067 8.533-34.133 12.8h-153.6c0 4.267 0 12.8 12.8 21.333 8.533 12.8 29.867 29.867 59.733 55.467 29.867 21.333 51.2 38.4 64 51.2s25.6 25.6 38.4 46.933c12.8 17.067 17.067 38.4 17.067 64 0 12.8-4.267 29.867-8.533 42.667-8.533 12.8-17.067 25.6-25.6 38.4s-21.333 21.333-34.133 25.6c-21.333 8.533-46.933 12.8-76.8 12.8-25.6 0-42.667-4.267-64-12.8s-38.4-21.333-46.933-29.867-21.333-25.6-25.6-38.4c-4.267-17.067-8.533-29.867-8.533-42.667 0-8.533 0-21.333 8.533-25.6s17.067-8.533 25.6-8.533c12.8 0 21.333 0 25.6 8.533 8.533 8.533 12.8 17.067 17.067 29.867s8.533 21.333 8.533 25.6c12.8 21.333 34.133 34.133 59.733 34.133 12.8 0 17.067-4.267 29.867-8.533s21.333-12.8 25.6-21.333 8.533-21.333 8.533-34.133c0-8.533 0-21.333-8.533-34.133s-17.067-21.333-25.6-34.133-21.333-21.333-38.4-34.133c-8.533-8.533-21.333-21.333-42.667-38.4-17.067-17.067-42.667-42.667-68.267-68.267-4.267-4.267-12.8-12.8-17.067-25.6s-8.533-21.333-8.533-29.867c0-12.8 4.267-21.333 12.8-29.867s17.067-17.067 34.133-25.6h213.333c12.8 12.8 25.6 12.8 29.867 21.333s8.533 17.067 8.533 25.6c0 12.8-4.267 21.333-12.8 25.6z" />
|
|
@@ -222,6 +225,7 @@
|
|
|
222
225
|
<glyph unicode="category" glyph-name="category" data-tags="category" d="M115.2 576v170.667c0 29.867 21.333 51.2 51.2 51.2h179.2c29.867 0 51.2-21.333 51.2-51.2v-170.667c0-29.867-25.6-51.2-51.2-51.2h-179.2c-25.6-4.267-51.2 21.333-51.2 51.2zM42.667 576c0-64 51.2-119.467 123.733-119.467h179.2c68.267 0 123.733 51.2 123.733 119.467v170.667c0 64-51.2 119.467-123.733 119.467h-179.2c-72.533-4.267-123.733-55.467-123.733-119.467v-170.667zM115.2 106.667v170.667c0 29.867 21.333 51.2 51.2 51.2h179.2c29.867 0 51.2-21.333 51.2-51.2v-170.667c0-29.867-25.6-51.2-51.2-51.2h-179.2c-25.6-4.267-51.2 21.333-51.2 51.2zM42.667 106.667c0-64 51.2-119.467 123.733-119.467h179.2c68.267 0 123.733 51.2 123.733 119.467v170.667c0 64-51.2 119.467-123.733 119.467h-179.2c-72.533-4.267-123.733-55.467-123.733-119.467v-170.667zM627.2 576v170.667c0 29.867 21.333 51.2 51.2 51.2h179.2c29.867 0 51.2-21.333 51.2-51.2v-170.667c0-29.867-25.6-51.2-51.2-51.2h-179.2c-25.6-4.267-51.2 21.333-51.2 51.2zM554.667 576c0-64 51.2-119.467 123.733-119.467h179.2c68.267 0 123.733 51.2 123.733 119.467v170.667c0 64-51.2 119.467-123.733 119.467h-179.2c-72.533-4.267-123.733-55.467-123.733-119.467v-170.667zM964.267 392.534l-238.933-324.267-64 85.333c-17.067 21.333-51.2 25.6-68.267 4.267v0 0l115.2-157.867c8.533-12.8 21.333-12.8 34.133 0l226.133 311.467c21.333 25.6 17.067 59.733-4.267 81.067v0z" />
|
|
223
226
|
<glyph unicode="card_membership" glyph-name="card_membership" data-tags="card_membership" d="M972.8 213.334l-132.267 132.267c76.8 140.8 55.467 320-64 439.467v0 0 0 0c-145.067 145.067-379.733 145.067-524.8 0-119.467-119.467-140.8-298.667-64-443.733l-132.267-132.267c-17.067-17.067-12.8-42.667 8.533-55.467l110.933-68.267 68.267-110.933c12.8-21.333 38.4-25.6 55.467-4.267l174.933 183.467c25.6-4.267 51.2-4.267 81.067 0l174.933-183.467c17.067-17.067 42.667-12.8 55.467 8.533l68.267 115.2 110.933 68.267c17.067 4.267 21.333 34.133 8.533 51.2zM277.333 55.467l-46.933 81.067c-4.267 4.267-8.533 8.533-12.8 12.8l-81.067 46.933 89.6 89.6c8.533-8.533 17.067-17.067 25.6-25.6 42.667-42.667 89.6-68.267 140.8-89.6l-115.2-115.2zM473.6 226.134c-4.267 0-8.533 4.267-17.067 4.267-55.467 12.8-110.933 38.4-153.6 81.067-119.467 119.467-119.467 307.2 0 426.667s307.2 119.467 426.667 0v0c98.133-98.133 115.2-251.733 42.667-366.933v0c-4.267-4.267-8.533-8.533-8.533-17.067-8.533-12.8-21.333-29.867-34.133-42.667-42.667-42.667-98.133-72.533-153.6-81.067-8.533 0-17.067 0-25.6-4.267-29.867-4.267-55.467-4.267-76.8 0zM793.6 132.267l-46.933-81.067-115.2 119.467c51.2 17.067 102.4 46.933 140.8 89.6 8.533 8.533 17.067 17.067 21.333 25.6l89.6-89.6-81.067-46.933c-4.267-8.533-8.533-12.8-8.533-17.067zM584.533 320c42.667-21.333 93.867 12.8 85.333 64l-12.8 76.8 55.467 55.467c34.133 34.133 17.067 93.867-34.133 102.4l-81.067 12.8-34.133 72.533c-21.333 42.667-85.333 42.667-106.667 0l-34.133-68.267-76.8-12.8c-46.933-8.533-68.267-68.267-34.133-102.4l55.467-55.467-12.8-76.8c-8.533-46.933 42.667-85.333 85.333-64l68.267 34.133 76.8-38.4zM435.2 396.8l12.8 72.533c0 12.8 0 25.6-8.533 34.133l-51.2 46.933 68.267 8.533c12.8 0 21.333 8.533 25.6 21.333l29.867 64 29.867-64c4.267-8.533 17.067-17.067 25.6-21.333l68.267-8.533-51.2-51.2c-8.533-8.533-12.8-21.333-8.533-29.867l12.8-68.267-59.733 29.867c-4.267 4.267-12.8 4.267-17.067 4.267v0-4.267c-4.267 0-8.533 0-12.8-4.267v0l-64-29.867z" />
|
|
224
227
|
<glyph unicode="card_giftcard" glyph-name="card_giftcard" data-tags="card_giftcard" d="M981.333 610.134c0 51.2-42.667 93.867-93.867 93.867h-102.4c4.267 12.8 8.533 34.133 8.533 46.933 0 81.067-59.733 140.8-140.8 140.8-51.2 0-93.867-25.6-119.467-59.733l-21.333-29.867-25.6 34.133c-21.333 34.133-68.267 59.733-115.2 59.733-81.067 0-140.8-64-140.8-140.8 0-12.8 4.267-34.133 8.533-46.933h-102.4c-51.2 0-93.867-42.667-93.867-98.133v-516.267c0-51.2 42.667-93.867 93.867-93.867h750.933c51.2 0 93.867 42.667 93.867 93.867 0 0 0 516.267 0 516.267zM652.8 810.667c34.133 0 59.733-25.6 59.733-59.733s-25.6-59.733-59.733-59.733c-34.133 0-59.733 25.6-59.733 59.733s25.6 59.733 59.733 59.733zM371.2 810.667c34.133 0 59.733-25.6 59.733-59.733s-25.6-55.467-59.733-55.467-59.733 21.333-59.733 59.733 25.6 55.467 59.733 55.467zM896 85.334h-768v85.333h768v-85.333zM896 213.334h-768v396.8h247.467l-98.133-132.267 76.8-55.467 110.933 149.333 46.933 68.267 46.933-64 110.933-149.333 76.8 55.467-98.133 132.267h247.467v-401.067z" />
|
|
228
|
+
<glyph unicode="calendar_off" glyph-name="calendar_off" data-tags="calendar_off" d="M320 533.334c17.067 0 29.867 8.533 29.867 29.867v85.333h247.467c17.067 0 29.867 8.533 29.867 29.867s-8.533 29.867-29.867 29.867h-251.733v72.533c0 17.067-8.533 29.867-25.6 29.867s-29.867-12.8-29.867-29.867v-213.333c0-17.067 12.8-34.133 29.867-34.133zM183.467 426.667h217.6l51.2 51.2h-268.8v140.8c0 17.067 8.533 29.867 29.867 29.867s29.867 8.533 29.867 29.867-8.533 29.867-29.867 29.867c-46.933 0-85.333-38.4-85.333-85.333v-469.333l55.467 55.467v217.6zM725.333 755.2v25.6c0 17.067-8.533 29.867-25.6 29.867s-29.867-8.533-29.867-29.867v-85.333l55.467 55.467zM968.533 883.2c-12.8 12.8-34.133 12.8-46.933 0l-866.133-866.133c-12.8-12.8-12.8-34.133 0-46.933s34.133-12.8 46.933 0l76.8 81.067c8.533 0 21.333-8.533 34.133-8.533h597.333c46.933 0 85.333 38.4 85.333 85.333v490.667c0 38.4-34.133 72.533-72.533 81.067l145.067 145.067c12.8 8.533 12.8 25.6 0 38.4zM840.533 128c-4.267-17.067-12.8-29.867-29.867-29.867h-580.267l93.867 98.133 226.133 230.4h290.133v-298.667zM844.8 614.4v-136.533h-243.2l72.533 72.533c4.267-8.533 12.8-12.8 25.6-12.8s29.867 8.533 29.867 29.867v38.4l38.4 38.4h46.933c17.067 0 29.867-8.533 29.867-29.867z" />
|
|
225
229
|
<glyph unicode="bookmark_border" glyph-name="bookmark_border" data-tags="bookmark_border" d="M712.533 814.934v0c4.267 0 4.267 0 0 0v0zM900.267 631.467l-183.467 183.467c-4.267 4.267-12.8 8.533-17.067 12.8-64 42.667-145.067 25.6-187.733-38.4l-89.6-128c-8.533-12.8-21.333-21.333-38.4-25.6l-234.667-59.733c-12.8-4.267-25.6-8.533-38.4-21.333-34.133-34.133-34.133-85.333 0-119.467l179.2-179.2-192-192c-12.8-12.8-12.8-38.4 0-51.2s38.4-12.8 51.2 0l192 192 174.933-174.933c12.8-12.8 25.6-17.067 38.4-21.333 46.933-12.8 93.867 17.067 102.4 64l59.733 234.667c0 4.267 4.267 8.533 8.533 12.8 0 0 4.267 0 4.267 4.267 4.267 4.267 4.267 8.533 8.533 12.8 0 0 4.267 4.267 4.267 4.267l136.533 89.6c8.533 4.267 12.8 12.8 21.333 17.067 51.2 46.933 51.2 132.267 0 183.467zM588.8 85.334c0-4.267-8.533-8.533-17.067-8.533-4.267 0-4.267 0-4.267 4.267l-200.533 200.533c0 0 0 0 0 4.267 0 0 0 0-4.267 0l-204.8 204.8c-4.267 4.267-4.267 12.8 0 17.067 0 0 4.267 4.267 4.267 4.267l234.667 59.733c8.533 0 17.067 4.267 25.6 8.533l234.667-234.667c-4.267-8.533-4.267-17.067-8.533-25.6l-59.733-234.667zM849.067 490.667c-4.267-4.267-4.267-4.267-8.533-8.533l-132.267-89.6-226.133 226.133 89.6 132.267c17.067 29.867 55.467 34.133 85.333 17.067 4.267 0 4.267-4.267 8.533-8.533l187.733-187.733c21.333-17.067 21.333-55.467-4.267-81.067z" />
|
|
226
230
|
<glyph unicode="bookmark_added" glyph-name="bookmark_added" data-tags="bookmark_added" d="M925.867 119.467l-512 507.733-196.267 187.733c-12.8 17.067-34.133 17.067-46.933 0-17.067-8.533-17.067-34.133 0-46.933l145.067-145.067-157.867-42.667c-46.933-12.8-72.533-55.467-59.733-102.4 4.267-12.8 8.533-29.867 25.6-38.4l174.933-174.933-200.533-200.533c-12.8-12.8-12.8-38.4 0-55.467 12.8-12.8 38.4-12.8 55.467 0l200.533 200.533 174.933-174.933c34.133-34.133 89.6-34.133 123.733 0 8.533 8.533 21.333 25.6 25.6 38.4l38.4 153.6 170.667-170.667c12.8-12.8 38.4-12.8 55.467 0-4.267 21.333-4.267 46.933-17.067 64zM593.067 98.134c0 0 0-4.267-4.267-4.267-4.267-4.267-12.8-4.267-21.333 0l-401.067 401.067c0 4.267 0 12.8 8.533 12.8l196.267 46.933 268.8-268.8-46.933-187.733zM576 768c25.6 25.6 64 21.333 85.333 0l179.2-179.2c0 0 4.267-4.267 8.533-8.533 21.333-29.867 12.8-55.467-21.333-81.067l-76.8-59.733c-21.333-8.533-21.333-34.133-8.533-46.933 8.533-12.8 29.867-25.6 46.933-17.067l4.267 4.267 76.8 55.467c64 42.667 76.8 128 38.4 183.467-4.267 8.533-12.8 12.8-21.333 25.6l-179.2 179.2c-55.467 46.933-136.533 51.2-192 0-4.267-4.267-8.533-4.267-21.333-21.333l-55.467-76.8c-8.533-12.8-12.8-34.133 4.267-46.933 21.333-17.067 34.133-12.8 51.2 8.533z" />
|
|
227
231
|
<glyph unicode="bar_chart" glyph-name="bar_chart" data-tags="bar_chart" d="M836.267 576h-93.867c0 4.267 0 8.533 0 12.8v153.6c4.267 34.133-21.333 68.267-59.733 72.533h-503.467v51.2c0 17.067-8.533 29.867-25.6 29.867s-29.867-12.8-29.867-29.867v-874.667c0-21.333 12.8-34.133 29.867-34.133s29.867 12.8 29.867 29.867v46.933h358.4c12.8 0 25.6 4.267 34.133 12.8 12.8 12.8 21.333 34.133 21.333 55.467v157.867c0 4.267 0 12.8 0 17.067h238.933c17.067 0 34.133 8.533 46.933 21.333s21.333 29.867 21.333 46.933v162.133c-4.267 38.4-34.133 68.267-68.267 68.267zM678.4 750.934c4.267 0 4.267-4.267 4.267-8.533v-162.133c0-4.267 0-4.267-4.267-4.267h-499.2v174.933h499.2zM533.333 98.134v-8.533h-354.133v174.933h349.867v-8.533c4.267 0 4.267-157.867 4.267-157.867zM827.733 332.8c-8.533 0-652.8 0-652.8 0v183.467h652.8c4.267 0 8.533-4.267 8.533-8.533 0 0 0-157.867 0-162.133 4.267-8.533 0-12.8-8.533-12.8z" />
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'community-icons';
|
|
3
|
-
src: url('./community/icons.eot?
|
|
4
|
-
src: url('./community/icons.eot?
|
|
5
|
-
url('./community/icons.woff2?
|
|
6
|
-
url('./community/icons.ttf?
|
|
7
|
-
url('./community/icons.woff?
|
|
8
|
-
url('./community/icons.svg?
|
|
3
|
+
src: url('./community/icons.eot?ajz0qm');
|
|
4
|
+
src: url('./community/icons.eot?ajz0qm#iefix') format('embedded-opentype'),
|
|
5
|
+
url('./community/icons.woff2?ajz0qm') format('woff2'),
|
|
6
|
+
url('./community/icons.ttf?ajz0qm') format('truetype'),
|
|
7
|
+
url('./community/icons.woff?ajz0qm') format('woff'),
|
|
8
|
+
url('./community/icons.svg?ajz0qm#community-icons') format('svg');
|
|
9
9
|
font-weight: normal;
|
|
10
10
|
font-style: normal;
|
|
11
11
|
font-display: block;
|
|
@@ -36,6 +36,12 @@
|
|
|
36
36
|
-moz-osx-font-smoothing: grayscale;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
.icon-frequency:before {
|
|
40
|
+
content: "\e969";
|
|
41
|
+
}
|
|
42
|
+
.icon-calendar_off:before {
|
|
43
|
+
content: "\e967";
|
|
44
|
+
}
|
|
39
45
|
.icon-twitter:before {
|
|
40
46
|
content: "\e959";
|
|
41
47
|
}
|