@xipkg/icons 0.9.0 → 0.9.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 +2 -0
- package/icons/Crown.tsx +14 -0
- package/index.ts +2 -0
- package/package.json +1 -1
- package/tsconfig.json +2 -0
package/config.ts
CHANGED
package/icons/Crown.tsx
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const Crown = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M10.1275 4.14574C10.7764 2.41541 13.2239 2.41541 13.8728 4.14575L15.3912 8.19475L17.9155 5.67042C19.3219 4.26398 21.6962 5.5497 21.2869 7.49615L19.4124 16.4115C19.2178 17.3372 18.4012 18 17.4552 18H6.79566C5.86434 18 5.05629 17.3572 4.84687 16.4497L2.80979 7.62235C2.35796 5.66443 4.75194 4.33758 6.17279 5.75842L8.60911 8.19474L10.1275 4.14574ZM12.0001 4.84799L10.4818 8.89699C9.97103 10.259 8.22344 10.6375 7.1949 9.60896L4.75857 7.17263L6.79566 16L17.4552 16L19.3297 7.08464L16.8054 9.60896C15.7768 10.6375 14.0293 10.259 13.5185 8.89699L12.0001 4.84799Z"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
d="M5.50014 20C5.50014 19.4477 5.94786 19 6.50014 19H17.5001C18.0524 19 18.5001 19.4477 18.5001 20C18.5001 20.5523 18.0524 21 17.5001 21H6.50014C5.94786 21 5.50014 20.5523 5.50014 20Z"
|
|
11
|
+
fillRule="evenodd"
|
|
12
|
+
/>
|
|
13
|
+
</Svg>
|
|
14
|
+
);
|
package/index.ts
CHANGED
|
@@ -116,6 +116,7 @@ import { Plus } from './icons/Plus';
|
|
|
116
116
|
import { CaretUp } from './icons/CaretUp';
|
|
117
117
|
import { Conference } from './icons/Conference';
|
|
118
118
|
import { Group } from './icons/Group';
|
|
119
|
+
import { Crown } from './icons/Crown';
|
|
119
120
|
import { icons } from './config';
|
|
120
121
|
|
|
121
122
|
export {
|
|
@@ -237,6 +238,7 @@ export {
|
|
|
237
238
|
CaretUp,
|
|
238
239
|
Conference,
|
|
239
240
|
Group,
|
|
241
|
+
Crown,
|
|
240
242
|
icons,
|
|
241
243
|
};
|
|
242
244
|
|
package/package.json
CHANGED