@expo/styleguide-icons 1.0.3 → 1.0.4
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.
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
declare function LinkedinIcon({ className, ...props }: SVGProps<SVGSVGElement> & React.HTMLAttributes<SVGSVGElement>): React.JSX.Element;
|
|
4
|
+
declare namespace LinkedinIcon {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default LinkedinIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
declare function MastodonIcon({ className, ...props }: SVGProps<SVGSVGElement> & React.HTMLAttributes<SVGSVGElement>): React.JSX.Element;
|
|
4
|
+
declare namespace MastodonIcon {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default MastodonIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
declare function YCombinatorIcon({ className, ...props }: SVGProps<SVGSVGElement> & React.HTMLAttributes<SVGSVGElement>): React.JSX.Element;
|
|
4
|
+
declare namespace YCombinatorIcon {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default YCombinatorIcon;
|
|
@@ -62,4 +62,7 @@ export { default as RedditIcon } from './RedditIcon';
|
|
|
62
62
|
export { default as TwitchIcon } from './TwitchIcon';
|
|
63
63
|
export { default as TwitterIcon } from './TwitterIcon';
|
|
64
64
|
export { default as YoutubeIcon } from './YoutubeIcon';
|
|
65
|
+
export { default as LinkedinIcon } from './LinkedinIcon';
|
|
65
66
|
export { default as XLogoIcon } from './XLogoIcon';
|
|
67
|
+
export { default as YCombinatorIcon } from './YCombinatorIcon';
|
|
68
|
+
export { default as MastodonIcon } from './MastodonIcon';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/styleguide-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Expo's icons for use on the web.",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"universe/node"
|
|
47
47
|
]
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "f8e43bfc1c6fb93b5ef746617d4506c84613003b"
|
|
50
50
|
}
|