@generation/icons 1.1.1 → 1.1.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/README.md +7 -3
- package/assets/magic-wand.svg +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/Icons/MagicWand.jsx +14 -0
- package/src/Icons/index.js +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const MagicWand = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path d="m22 2-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29a.996.996 0 0 0-1.41 0L1.29 18.96a.996.996 0 0 0 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05a.996.996 0 0 0 0-1.41zm-1.03 5.49-2.12-2.12 2.44-2.44 2.12 2.12z" />
|
|
12
|
+
</svg>
|
|
13
|
+
);
|
|
14
|
+
export default MagicWand;
|
package/src/Icons/index.js
CHANGED
|
@@ -218,6 +218,7 @@ export { default as LogOut } from './LogOut';
|
|
|
218
218
|
export { default as LogoGeneration } from './LogoGeneration';
|
|
219
219
|
export { default as LogoGoogle } from './LogoGoogle';
|
|
220
220
|
export { default as Low } from './Low';
|
|
221
|
+
export { default as MagicWand } from './MagicWand';
|
|
221
222
|
export { default as MailFill } from './MailFill';
|
|
222
223
|
export { default as MailFillOut } from './MailFillOut';
|
|
223
224
|
export { default as Map } from './Map';
|