@xipkg/icons 0.8.1 → 0.8.2

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,5 @@ export const icons = [
110
110
  'Window',
111
111
  'SoundTwo',
112
112
  'Plus',
113
+ 'CaretUp'
113
114
  ];
@@ -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
+ );
package/index.ts CHANGED
@@ -111,6 +111,7 @@ 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';
114
115
  import { icons } from './config';
115
116
 
116
117
  export {
@@ -227,6 +228,7 @@ export {
227
228
  Window,
228
229
  SoundTwo,
229
230
  Plus,
231
+ CaretUp,
230
232
  icons,
231
233
  };
232
234
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xipkg/icons",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -113,7 +113,8 @@
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"
117
118
  ],
118
119
  "exclude": ["dist", "build", "node_modules"]
119
120
  }