wex-ui-lib 1.3.5 → 1.3.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.
- package/dist/index.cjs.js +16 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +16 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/Footer/Footer.types.d.ts +2 -1
- package/dist/types/components/Icon/Icon.stories.d.ts +11 -0
- package/dist/types/components/Icon/Icon.types.d.ts +1 -1
- package/package.json +1 -1
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react/*';
|
2
|
+
import { IconProps } from './Icon.types';
|
3
|
+
type StoryProps = IconProps;
|
4
|
+
declare const meta: Meta<StoryProps>;
|
5
|
+
export default meta;
|
6
|
+
type Story = StoryObj<StoryProps>;
|
7
|
+
export declare const Instagram: Story;
|
8
|
+
export declare const Facebook: Story;
|
9
|
+
export declare const Youtube: Story;
|
10
|
+
export declare const LinkedIn: Story;
|
11
|
+
export declare const Twitter: Story;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
export type ArrowIcon = 'arrow-long' | 'arrow-caret' | 'arrow-long-left' | 'arrow-caret-left';
|
2
|
-
export type SocialMediaIcon = "twitter" | "instagram" | "youtube" | "linkedin";
|
2
|
+
export type SocialMediaIcon = "twitter" | "instagram" | "youtube" | "linkedin" | "facebook";
|
3
3
|
export type IconProps = {
|
4
4
|
color?: string;
|
5
5
|
hoverColor?: string;
|