@expo/styleguide-icons 1.0.3 → 1.0.5

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;
@@ -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;
@@ -49,17 +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
67
  export { default as XLogoIcon } from './XLogoIcon';
68
+ export { default as YCombinatorIcon } from './YCombinatorIcon';
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",
3
+ "version": "1.0.5",
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": "aeb3a9d4ff68c0a066fd4c332ec0b860c31e97ef"
49
+ "gitHead": "1adba8f9df3e8e113bee1daa9e786f3b26355738"
50
50
  }