@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 +1 -0
- package/icons/CaretUp.tsx +11 -0
- package/index.ts +2 -0
- package/package.json +1 -1
- package/tsconfig.json +2 -1
package/config.ts
CHANGED
|
@@ -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