@xipkg/icons 0.8.2 → 0.8.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/config.ts +2 -1
- package/icons/Conference.tsx +17 -0
- package/index.ts +2 -0
- package/package.json +1 -1
- package/tsconfig.json +2 -1
package/config.ts
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const Conference = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fillRule="evenodd"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
d="M13 7H7C5.89543 7 5 7.89543 5 9V15C5 16.1046 5.89543 17 7 17H13C14.1046 17 15 16.1046 15 15V9C15 7.89543 14.1046 7 13 7ZM7 5C4.79086 5 3 6.79086 3 9V15C3 17.2091 4.79086 19 7 19H13C15.2091 19 17 17.2091 17 15V9C17 6.79086 15.2091 5 13 5H7Z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fillRule="evenodd"
|
|
12
|
+
clipRule="evenodd"
|
|
13
|
+
d="M16 10.5524L19 8.64335V15.3567L16 13.4476V15.8182L17.9262 17.044C19.2577 17.8913 21 16.9348 21 15.3567V8.64335C21 7.06517 19.2577 6.10874 17.9262 6.95603L16 8.18182V10.5524Z"
|
|
14
|
+
/>
|
|
15
|
+
<path d="M7 10C7 9.44772 7.44772 9 8 9H10C10.5523 9 11 9.44772 11 10C11 10.5523 10.5523 11 10 11H8C7.44772 11 7 10.5523 7 10Z" />
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
package/index.ts
CHANGED
|
@@ -112,6 +112,7 @@ import { Window } from './icons/Window';
|
|
|
112
112
|
import { SoundTwo } from './icons/SoundTwo';
|
|
113
113
|
import { Plus } from './icons/Plus';
|
|
114
114
|
import { CaretUp } from './icons/CaretUp';
|
|
115
|
+
import { Conference } from './icons/Conference';
|
|
115
116
|
import { icons } from './config';
|
|
116
117
|
|
|
117
118
|
export {
|
|
@@ -229,6 +230,7 @@ export {
|
|
|
229
230
|
SoundTwo,
|
|
230
231
|
Plus,
|
|
231
232
|
CaretUp,
|
|
233
|
+
Conference,
|
|
232
234
|
icons,
|
|
233
235
|
};
|
|
234
236
|
|
package/package.json
CHANGED