@expo/styleguide-icons 1.0.4 → 1.0.6
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 BlueskyIcon({ className, ...props }: SVGProps<SVGSVGElement> & React.HTMLAttributes<SVGSVGElement>): React.JSX.Element;
|
|
4
|
+
declare namespace BlueskyIcon {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default BlueskyIcon;
|
|
@@ -49,20 +49,21 @@ export { default as PlanOnDemandIcon } from './PlanOnDemandIcon';
|
|
|
49
49
|
export { default as BuildArtifactIcon } from './BuildArtifactIcon';
|
|
50
50
|
export { default as AndroidIcon } from './AndroidIcon';
|
|
51
51
|
export { default as AppleIcon } from './AppleIcon';
|
|
52
|
+
export { default as BlueskyIcon } from './BlueskyIcon';
|
|
52
53
|
export { default as AppleAppStoreIcon } from './AppleAppStoreIcon';
|
|
53
54
|
export { default as AppleSimulatorIcon } from './AppleSimulatorIcon';
|
|
54
55
|
export { default as DiscordIcon } from './DiscordIcon';
|
|
55
56
|
export { default as DiscourseIcon } from './DiscourseIcon';
|
|
56
57
|
export { default as FacebookIcon } from './FacebookIcon';
|
|
57
58
|
export { default as GithubIcon } from './GithubIcon';
|
|
59
|
+
export { default as GoogleAppStoreIcon } from './GoogleAppStoreIcon';
|
|
58
60
|
export { default as InstagramIcon } from './InstagramIcon';
|
|
61
|
+
export { default as LinkedinIcon } from './LinkedinIcon';
|
|
62
|
+
export { default as MastodonIcon } from './MastodonIcon';
|
|
59
63
|
export { default as NpmIcon } from './NpmIcon';
|
|
60
|
-
export { default as GoogleAppStoreIcon } from './GoogleAppStoreIcon';
|
|
61
64
|
export { default as RedditIcon } from './RedditIcon';
|
|
62
65
|
export { default as TwitchIcon } from './TwitchIcon';
|
|
63
66
|
export { default as TwitterIcon } from './TwitterIcon';
|
|
64
|
-
export { default as YoutubeIcon } from './YoutubeIcon';
|
|
65
|
-
export { default as LinkedinIcon } from './LinkedinIcon';
|
|
66
67
|
export { default as XLogoIcon } from './XLogoIcon';
|
|
67
68
|
export { default as YCombinatorIcon } from './YCombinatorIcon';
|
|
68
|
-
export { default as
|
|
69
|
+
export { default as YoutubeIcon } from './YoutubeIcon';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/styleguide-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Expo's icons for use on the web.",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"url": "https://github.com/expo/styleguide/issues"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"tailwind-merge": "^
|
|
31
|
+
"tailwind-merge": "^2.2.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@figma-export/cli": "^4.
|
|
35
|
-
"@figma-export/output-components-as-svgr": "^4.
|
|
36
|
-
"@figma-export/transform-svg-with-svgo": "^4.
|
|
37
|
-
"dotenv": "^16.
|
|
38
|
-
"tslib": "^2.
|
|
34
|
+
"@figma-export/cli": "^4.7.0",
|
|
35
|
+
"@figma-export/output-components-as-svgr": "^4.7.0",
|
|
36
|
+
"@figma-export/transform-svg-with-svgo": "^4.7.0",
|
|
37
|
+
"dotenv": "^16.3.1",
|
|
38
|
+
"tslib": "^2.6.2"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": ">= 16"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"universe/node"
|
|
47
47
|
]
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "a257208479c1d6a58ae385073008f43cb8f77cb7"
|
|
50
50
|
}
|