@xipkg/icons 0.8.1 → 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 CHANGED
@@ -110,4 +110,6 @@ export const icons = [
110
110
  'Window',
111
111
  'SoundTwo',
112
112
  'Plus',
113
+ 'CaretUp',
114
+ 'Conference'
113
115
  ];
@@ -0,0 +1,11 @@
1
+ import { Svg, IconProps } from '../Svg';
2
+
3
+ export const CaretUp = ({ ...props }: IconProps) => (
4
+ <Svg {...props}>
5
+ <path
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M11.2929 9.29289C11.6834 8.90237 12.3166 8.90237 12.7071 9.29289L16.7071 13.2929C17.0976 13.6834 17.0976 14.3166 16.7071 14.7071C16.3166 15.0976 15.6834 15.0976 15.2929 14.7071L12 11.4142L8.70711 14.7071C8.31658 15.0976 7.68342 15.0976 7.29289 14.7071C6.90237 14.3166 6.90237 13.6834 7.29289 13.2929L11.2929 9.29289Z"
9
+ />
10
+ </Svg>
11
+ );
@@ -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
@@ -111,6 +111,8 @@ import { Video } from './icons/Video';
111
111
  import { Window } from './icons/Window';
112
112
  import { SoundTwo } from './icons/SoundTwo';
113
113
  import { Plus } from './icons/Plus';
114
+ import { CaretUp } from './icons/CaretUp';
115
+ import { Conference } from './icons/Conference';
114
116
  import { icons } from './config';
115
117
 
116
118
  export {
@@ -227,6 +229,8 @@ export {
227
229
  Window,
228
230
  SoundTwo,
229
231
  Plus,
232
+ CaretUp,
233
+ Conference,
230
234
  icons,
231
235
  };
232
236
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xipkg/icons",
3
- "version": "0.8.1",
3
+ "version": "0.8.3",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -113,7 +113,9 @@
113
113
  "icons/Window.tsx",
114
114
  "icons/Video.tsx",
115
115
  "icons/SoundTwo.tsx",
116
- "icons/Plus.tsx"
116
+ "icons/Plus.tsx",
117
+ "icons/CaretUp.tsx",
118
+ "icons/Conference.tsx"
117
119
  ],
118
120
  "exclude": ["dist", "build", "node_modules"]
119
121
  }