@manamerge/mana-atomic-ui 1.0.164 → 1.0.165

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.
Files changed (38) hide show
  1. package/dist/index.d.ts +4 -2
  2. package/dist/index.js +76 -45
  3. package/dist/index.js.map +1 -1
  4. package/dist/themes/themes/ManamergeTheme.ts +5 -0
  5. package/dist/themes/themes/davidWeb/miscellaneous/colorpalette.ts +7 -6
  6. package/dist/themes/themes/manamerge/atoms/gradient.ts +2 -2
  7. package/dist/themes/themes/manamerge/atoms/icon.ts +47 -17
  8. package/dist/themes/themes/manamerge/atoms/link.ts +19 -47
  9. package/dist/themes/themes/manamerge/fonts/Gilmer-Bold.woff2 +0 -0
  10. package/dist/themes/themes/manamerge/fonts/Gilmer-Heavy.woff2 +0 -0
  11. package/dist/themes/themes/manamerge/fonts/Gilmer-Light.woff2 +0 -0
  12. package/dist/themes/themes/manamerge/fonts/Gilmer-Medium.woff2 +0 -0
  13. package/dist/themes/themes/manamerge/fonts/Gilmer-Regular.woff2 +0 -0
  14. package/dist/themes/themes/manamerge/miscellaneous/colorpalette.ts +7 -6
  15. package/dist/themes/themes/manamerge/molecules/accordion.ts +1 -1
  16. package/dist/themes/themes/manamerge/molecules/breakerTape.ts +1 -1
  17. package/dist/themes/themes/manamerge/molecules/cardBanner.ts +1 -1
  18. package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +1 -1
  19. package/dist/themes/themes/manamerge/molecules/cardTeaser.ts +1 -1
  20. package/dist/themes/themes/manamerge/molecules/footer.ts +6 -7
  21. package/dist/themes/themes/manamerge/molecules/header.ts +19 -9
  22. package/dist/themes/themes/manamerge/molecules/navigation.ts +18 -9
  23. package/dist/types/components/Atoms/Icon/Icon.css.d.ts +3 -0
  24. package/dist/types/components/Atoms/Icon/Icon.d.ts +4 -1
  25. package/dist/types/components/Atoms/Icon/Icon.stories.d.ts +6 -0
  26. package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +11 -0
  27. package/dist/types/components/Molecules/Footer/Footer.css.d.ts +3 -0
  28. package/dist/types/components/Molecules/Header/Header.css.d.ts +3 -0
  29. package/dist/types/components/Molecules/Navigation/Navigation.d.ts +0 -1
  30. package/dist/types/themes/ManamergeTheme.d.ts +95 -50
  31. package/dist/types/themes/davidWeb/miscellaneous/colorpalette.d.ts +1 -0
  32. package/dist/types/themes/manamerge/atoms/icon.d.ts +36 -8
  33. package/dist/types/themes/manamerge/atoms/link.d.ts +9 -37
  34. package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +1 -0
  35. package/dist/types/themes/manamerge/molecules/footer.d.ts +2 -3
  36. package/dist/types/themes/manamerge/molecules/header.d.ts +9 -1
  37. package/dist/types/themes/manamerge/molecules/navigation.d.ts +8 -1
  38. package/package.json +1 -1
@@ -27,6 +27,9 @@ import pint3 from "./manamerge/layouts/pint3";
27
27
  // vSizes
28
28
  import fontsizes from "./manamerge/miscellaneous/fontsizes";
29
29
 
30
+ // colorPalette
31
+ import colors from "./manamerge/miscellaneous/colorpalette";
32
+
30
33
  // Styling
31
34
  // import filterListTheme from "./manamerge/styling/filter-list-theme.css.js";
32
35
  // import chatTheme from "./manamerge/styling/chat-theme.css.js";
@@ -144,6 +147,8 @@ export const ManamergeTheme = {
144
147
  breakpoints,
145
148
  // vSizes
146
149
  fontsizes,
150
+ // colorPalette
151
+ colors,
147
152
 
148
153
  pages: {
149
154
  vod: {
@@ -1,4 +1,5 @@
1
1
  const colors = {
2
+ transparent: "transparent",
2
3
  one: {
3
4
  a: "#fff",
4
5
  b: "#e0e0e0",
@@ -11,12 +12,12 @@ const colors = {
11
12
  i: "#000000"
12
13
  },
13
14
  two: {
14
- a: "#0041FF",
15
- b: "#0031CC",
16
- c: "#04198C",
17
- d: "#050A59",
18
- e: "#030733",
19
- f: "#02041A"
15
+ a: "#C6FBA6",
16
+ b: "#A9E694",
17
+ c: "#80C3BA",
18
+ d: "#6FA58E",
19
+ e: "#5E876B",
20
+ f: "#4D694C"
20
21
  },
21
22
  three: {
22
23
  a: "#FFD166",
@@ -2,8 +2,8 @@ import colors from "../miscellaneous/colorpalette";
2
2
  const gradient = {
3
3
  "Gradient-primary": {
4
4
  orientation: "circle at 100%",
5
- primaryColor: colors.three.b,
6
- secondaryColor: colors.three.a
5
+ primaryColor: colors.two.a,
6
+ secondaryColor: colors.two.c
7
7
  },
8
8
  "Gradient-secondary": {
9
9
  orientation: "closest-side",
@@ -1,29 +1,59 @@
1
+ import colors from "../miscellaneous/colorpalette";
2
+
1
3
  const icon = {
2
- "Icon-small": {
4
+ "Icon-xs": {
3
5
  size: "16px",
4
- color: "red",
5
- stroke: "black",
6
+ color: colors.transparent,
7
+ fill: colors.three.a,
8
+ stroke: colors.two.a,
6
9
  hover: {
7
- stroke: "#ccc",
8
- fill: "#ccc"
10
+ color: colors.transparent,
11
+ fill: colors.four.a,
12
+ stroke: colors.two.f
9
13
  }
10
14
  },
11
- "Icon-medium": {
12
- size: "22px",
13
- color: "#ccc",
14
- stroke: "#ccc",
15
+ "Icon-sm": {
16
+ size: "24px",
17
+ fill: colors.three.a,
18
+ stroke: colors.two.a
19
+ },
20
+ "Icon-md": {
21
+ size: "32px",
22
+ fill: colors.three.a,
23
+ stroke: colors.two.a
24
+ },
25
+ "Icon-lg": {
26
+ size: "48px",
27
+ fill: colors.three.a,
28
+ stroke: colors.two.a
29
+ },
30
+ "Icon-xl": {
31
+ size: "64px",
32
+ fill: colors.three.a,
33
+ stroke: colors.two.a
34
+ },
35
+ "Icon-xxl": {
36
+ size: "96px",
37
+ fill: colors.three.a,
38
+ stroke: colors.two.a
39
+ },
40
+ "Icon-xxxl": {
41
+ size: "128px",
42
+ fill: colors.three.a,
43
+ stroke: colors.two.a,
15
44
  hover: {
16
- stroke: "#f00",
17
- color: "#f00"
45
+ opacity: "0.8"
18
46
  }
19
47
  },
20
- "Icon-large": {
21
- size: "64px",
22
- color: "orange",
23
- stroke: "gold",
48
+ "Icon-xxxxl": {
49
+ size: "192px",
50
+ color: colors.transparent,
51
+ fill: colors.three.a,
52
+ stroke: colors.two.a,
24
53
  hover: {
25
- stroke: "#ccc",
26
- fill: "#ccc"
54
+ color: colors.transparent,
55
+ fill: colors.four.a,
56
+ stroke: colors.two.f
27
57
  }
28
58
  }
29
59
  };
@@ -1,10 +1,12 @@
1
1
  import colors from "../miscellaneous/colorpalette";
2
+ import fontsizes from "../miscellaneous/fontsizes";
2
3
 
3
4
  const Link = {
4
5
  "Link-primary-light": {
5
- fontSize: "13px",
6
+ fontSize: fontsizes.xs,
6
7
  lineHeight: "18px",
7
8
  fontWeight: 300,
9
+ fontFamily: "ManamergeGilmer",
8
10
  color: colors.two.a,
9
11
  hover: {
10
12
  color: colors.one.b
@@ -14,9 +16,10 @@ const Link = {
14
16
  }
15
17
  },
16
18
  "Link-primary-regular": {
17
- fontSize: "15px",
19
+ fontSize: fontsizes.sm,
18
20
  lineHeight: "25px",
19
21
  fontWeight: 400,
22
+ fontFamily: "ManamergeGilmer",
20
23
  color: colors.two.a,
21
24
  hover: {
22
25
  color: colors.one.b
@@ -26,9 +29,10 @@ const Link = {
26
29
  }
27
30
  },
28
31
  "Link-primary-medium": {
29
- fontSize: "17px",
32
+ fontSize: fontsizes.md,
30
33
  lineHeight: "28px",
31
34
  fontWeight: 500,
35
+ fontFamily: "ManamergeGilmer",
32
36
  color: colors.two.a,
33
37
  hover: {
34
38
  color: colors.one.b
@@ -38,9 +42,10 @@ const Link = {
38
42
  }
39
43
  },
40
44
  "Link-primary-bold": {
41
- fontSize: "17px",
45
+ fontSize: fontsizes.lg,
42
46
  lineHeight: "28px",
43
47
  fontWeight: 700,
48
+ fontFamily: "ManamergeGilmer",
44
49
  color: colors.two.a,
45
50
  hover: {
46
51
  color: colors.one.b
@@ -50,9 +55,10 @@ const Link = {
50
55
  }
51
56
  },
52
57
  "Link-primary-heavy": {
53
- fontSize: "17px",
58
+ fontSize: fontsizes.xl,
54
59
  lineHeight: "28px",
55
60
  fontWeight: 900,
61
+ fontFamily: "ManamergeGilmer",
56
62
  color: colors.two.a,
57
63
  hover: {
58
64
  color: colors.one.b
@@ -61,23 +67,11 @@ const Link = {
61
67
  color: colors.one.e
62
68
  }
63
69
  },
64
-
65
- "Link-secondary-light": {
66
- fontSize: "13px",
67
- lineHeight: "18px",
68
- fontWeight: 300,
69
- color: colors.one.b,
70
- hover: {
71
- color: colors.two.a
72
- },
73
- disabled: {
74
- color: colors.one.e
75
- }
76
- },
77
70
  "Link-secondary-regular": {
78
- fontSize: "15px",
71
+ fontSize: fontsizes.sm,
79
72
  lineHeight: "25px",
80
73
  fontWeight: 400,
74
+ fontFamily: "Springwood",
81
75
  color: colors.one.b,
82
76
  hover: {
83
77
  color: colors.two.a
@@ -86,34 +80,12 @@ const Link = {
86
80
  color: colors.one.e
87
81
  }
88
82
  },
89
- "Link-secondary-medium": {
90
- fontSize: "17px",
91
- lineHeight: "28px",
92
- fontWeight: 500,
93
- color: colors.one.b,
94
- hover: {
95
- color: colors.two.a
96
- },
97
- disabled: {
98
- color: colors.one.e
99
- }
100
- },
101
- "Link-secondary-bold": {
102
- fontSize: "17px",
103
- lineHeight: "28px",
104
- fontWeight: 700,
105
- color: colors.one.b,
106
- hover: {
107
- color: colors.two.a
108
- },
109
- disabled: {
110
- color: colors.one.e
111
- }
112
- },
113
- "Link-secondary-heavy": {
114
- fontSize: "17px",
115
- lineHeight: "28px",
116
- fontWeight: 900,
83
+ "Link-secondary-italic": {
84
+ fontSize: fontsizes.lg,
85
+ lineHeight: "25px",
86
+ fontWeight: 400,
87
+ fontFamily: "Springwood",
88
+ fontStyle: "italic",
117
89
  color: colors.one.b,
118
90
  hover: {
119
91
  color: colors.two.a
@@ -1,4 +1,5 @@
1
1
  const colors = {
2
+ transparent: "transparent",
2
3
  one: {
3
4
  a: "#fff",
4
5
  b: "#e0e0e0",
@@ -11,12 +12,12 @@ const colors = {
11
12
  i: "#000000"
12
13
  },
13
14
  two: {
14
- a: "#0041FF",
15
- b: "#0031CC",
16
- c: "#04198C",
17
- d: "#050A59",
18
- e: "#030733",
19
- f: "#02041A"
15
+ a: "#C6FBA6",
16
+ b: "#A9E694",
17
+ c: "#80C3BA",
18
+ d: "#6FA58E",
19
+ e: "#5E876B",
20
+ f: "#4D694C"
20
21
  },
21
22
  three: {
22
23
  a: "#FFD166",
@@ -14,7 +14,7 @@ const accordion = {
14
14
  gap: "10px",
15
15
  backgroundDescription: "#ccc",
16
16
  atomIcon: {
17
- variant: "small"
17
+ variant: "sm"
18
18
  },
19
19
  atomHeading: {
20
20
  variant: "primary-h5",
@@ -4,7 +4,7 @@ import vFontSizes from "../miscellaneous/fontsizes";
4
4
  const breakerTape = {
5
5
  "BreakerTape-primary": {
6
6
  icon: {
7
- variant: "medium",
7
+ variant: "md",
8
8
  fill: colors.one.g,
9
9
  stroke: colors.one.g,
10
10
  hover: {
@@ -19,7 +19,7 @@ const cardBanner = {
19
19
  variant: "primary"
20
20
  },
21
21
  atomIcon: {
22
- variant: "medium",
22
+ variant: "md",
23
23
  stroke: colors.one.i,
24
24
  color: colors.one.i
25
25
  }
@@ -23,7 +23,7 @@ const cardSimpleRender = {
23
23
  },
24
24
 
25
25
  atomIcon: {
26
- variant: "medium"
26
+ variant: "md"
27
27
  },
28
28
  atomHeading: {
29
29
  variant: "primary",
@@ -21,7 +21,7 @@ const cardTeaser = {
21
21
  margin: " 8px 0"
22
22
  },
23
23
  icon: {
24
- variant: "medium"
24
+ variant: "md"
25
25
  },
26
26
  button: {
27
27
  variant: "primary"
@@ -9,17 +9,16 @@ const footer = {
9
9
  padding: "10px",
10
10
  gap: "20px",
11
11
  text: {
12
- variant: "secondary-light",
13
- color: "#1cc",
14
- hover: {
15
- color: "#f00"
16
- }
12
+ variant: "primary-light"
13
+ },
14
+ gradient: {
15
+ color: "primary"
17
16
  },
18
17
  links: {
19
- variant: "secondary-regular"
18
+ variant: "primary-medium"
20
19
  },
21
20
  icons: {
22
- variant: "medium"
21
+ variant: "md"
23
22
  }
24
23
  }
25
24
  };
@@ -1,14 +1,15 @@
1
+ import colors from "../miscellaneous/colorpalette";
2
+
1
3
  const header = {
2
4
  "Header-primary": {
3
5
  height: "350px",
4
- backgroundColor: "rgba(250, 97, 97, 0.71)",
5
6
  justifyContent: "center",
6
7
  bannerColor: "lightgray",
7
8
  wrapperHeader: {
8
9
  alignItems: "center"
9
10
  },
10
11
  atomIconTop: {
11
- variant: "large",
12
+ variant: "lg",
12
13
  stroke: "none",
13
14
  fill: "none",
14
15
  hover: {
@@ -17,7 +18,7 @@ const header = {
17
18
  }
18
19
  },
19
20
  atomIconDot: {
20
- variant: "small",
21
+ variant: "sm",
21
22
  size: "10px",
22
23
  fill: "green",
23
24
  stroke: "none",
@@ -25,11 +26,16 @@ const header = {
25
26
  stroke: "none"
26
27
  }
27
28
  },
29
+ atomTextBanner: {
30
+ variant: "primary-medium",
31
+ color: colors.one.h
32
+ },
28
33
  atomHeading: {
29
- variant: "secondary-h1"
34
+ variant: "primary",
35
+ asTag: "h1"
30
36
  },
31
37
  atomTextTitle: {
32
- variant: "secondary-medium"
38
+ variant: "primary-medium"
33
39
  },
34
40
  atomButtonLeft: {
35
41
  variant: "primary",
@@ -37,13 +43,13 @@ const header = {
37
43
  },
38
44
  atomButtonRight: {
39
45
  variant: "secondary",
40
- flexDirection: "row-reverse"
46
+ flexDirection: "row"
41
47
  },
42
48
  atomIconLeft: {
43
- variant: "small"
49
+ variant: "sm"
44
50
  },
45
51
  atomIconRight: {
46
- variant: "small"
52
+ variant: "sm"
47
53
  },
48
54
  wrapperTextTitle: {
49
55
  alignItems: "center"
@@ -60,7 +66,7 @@ const header = {
60
66
  },
61
67
 
62
68
  atomIconDot: {
63
- variant: "small",
69
+ variant: "sm",
64
70
  size: "10px",
65
71
  fill: "green",
66
72
  stroke: "none",
@@ -68,6 +74,10 @@ const header = {
68
74
  stroke: "none"
69
75
  }
70
76
  },
77
+ atomTextBanner: {
78
+ variant: "primary-medium",
79
+ color: colors.one.h
80
+ },
71
81
  atomHeading: {
72
82
  variant: "primary",
73
83
  asTag: "h1"
@@ -1,14 +1,17 @@
1
+ import colors from "../miscellaneous/colorpalette";
2
+
1
3
  const navigation = {
2
4
  "Navigation-primary": {
3
- gap: "30px",
5
+ gap: "50px",
4
6
  background: `linear-gradient(
5
7
  180deg,
6
8
  rgba(59, 60, 63, 0.6) 0%,
7
9
  rgba(38, 38, 38, 0.8) 43.75%
8
10
  ),
9
11
  rgba(59, 60, 63, 0.8);`,
12
+ padding: "10px",
10
13
  atomIcon: {
11
- variant: "medium",
14
+ variant: "md",
12
15
  color: "white",
13
16
  focus: {
14
17
  outline: "2px solid darkblue",
@@ -23,25 +26,31 @@ const navigation = {
23
26
  },
24
27
  atomLink: {
25
28
  variant: "primary-bold",
26
- color: "#ccc",
29
+ color: colors.one.b,
27
30
  fontWeight: "700",
28
31
  currentPath: {
29
- color: "green",
30
- fontWeight: "900"
32
+ color: colors.three.a,
33
+ fontWeight: "700"
31
34
  },
32
35
  focus: {
33
- color: "gold",
34
- boxShadow: "2px 2px 5px yellow"
36
+ color: colors.three.a
35
37
  },
36
38
  hover: {
37
- color: "#f00",
39
+ color: colors.three.a,
38
40
  transition: "color 0.3s ease"
41
+ },
42
+ underline: {
43
+ bottom: "2px",
44
+ height: "2px",
45
+ background: colors.three.a,
46
+ transformOrigin: "center",
47
+ transition: "0.35s cubic-bezier(.22,1,.36,1)"
39
48
  }
40
49
  },
41
50
  navLinks: {
42
51
  responsive: {
43
52
  largeMobileUp: {
44
- gap: "30px",
53
+ gap: "50px",
45
54
  justifyContent: "flex-start", // change here if you want the menu to aligned on the left/center/right
46
55
  margin: "0 30px 0 0"
47
56
  }
@@ -2,8 +2,11 @@
2
2
  export declare const StyledSvg: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGSVGElement>, {
3
3
  size?: string | undefined;
4
4
  color?: string | undefined;
5
+ fill?: string | undefined;
5
6
  stroke?: string | undefined;
6
7
  hoverColor?: string | undefined;
8
+ hoverFill?: string | undefined;
7
9
  hoverStroke?: string | undefined;
10
+ hoverOpacity?: string | undefined;
8
11
  variant: string;
9
12
  }>> & string;
@@ -2,11 +2,14 @@ import React, { FunctionComponent, SVGProps } from "react";
2
2
  export interface IconTypes {
3
3
  variant?: string;
4
4
  svg: FunctionComponent<SVGProps<SVGSVGElement>>;
5
- color?: string;
6
5
  size?: string;
6
+ color?: string;
7
+ fill?: string;
7
8
  stroke?: string;
8
9
  hoverColor?: string;
10
+ hoverFill?: string;
9
11
  hoverStroke?: string;
12
+ hoverOpacity?: string;
10
13
  onClick?: () => void;
11
14
  onKeyDown?: (event: React.KeyboardEvent<SVGSVGElement>) => void;
12
15
  tabIndex?: number;
@@ -4,6 +4,12 @@ declare const meta: Meta<IconTypes>;
4
4
  export default meta;
5
5
  type Story = StoryObj<IconTypes>;
6
6
  export declare const Combos: Story;
7
+ export declare const Custom: Story;
8
+ export declare const ExtraSmall: Story;
7
9
  export declare const Small: Story;
8
10
  export declare const Medium: Story;
9
11
  export declare const Large: Story;
12
+ export declare const ExtraLarge: Story;
13
+ export declare const ExtraExtraLarge: Story;
14
+ export declare const ExtraExtraExtraLarge: Story;
15
+ export declare const ExtraExtraExtraExtraLarge: Story;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from "@storybook/react";
2
+ import { CardSimpleRenderTypes } from "./CardSimpleRender";
3
+ declare const meta: Meta<CardSimpleRenderTypes>;
4
+ export default meta;
5
+ type Story = StoryObj<CardSimpleRenderTypes>;
6
+ export declare const Default: Story;
7
+ export declare const Hover: Story;
8
+ export declare const Flex: Story;
9
+ export declare const FlexExtra: Story;
10
+ export declare const Flex2: Story;
11
+ export declare const Isolado: Story;
@@ -8,6 +8,9 @@ export declare const FooterNav: import("styled-components/dist/types").IStyledCo
8
8
  export declare const IconFooter: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Icon/Icon").IconTypes, import("../../Atoms/Icon/Icon").IconTypes>, {
9
9
  moleculeVariant: string;
10
10
  }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
11
+ export declare const StyledGradient: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Gradient/Gradient").GradientTypes, import("../../Atoms/Gradient/Gradient").GradientTypes>, {
12
+ moleculeVariant: string;
13
+ }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Gradient/Gradient").GradientTypes>, keyof import("react").Component<any, {}, any>>;
11
14
  export declare const StyledLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Link/Link").LinkTypes, import("../../Atoms/Link/Link").LinkTypes>, {
12
15
  moleculeVariant: string;
13
16
  }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Link/Link").LinkTypes>, keyof import("react").Component<any, {}, any>>;
@@ -16,6 +16,9 @@ export declare const AtomIconTop: import("styled-components/dist/types").IStyled
16
16
  export declare const AtomIconDot: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Icon/Icon").IconTypes, import("../../Atoms/Icon/Icon").IconTypes>, {
17
17
  moleculeVariant: string;
18
18
  }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
19
+ export declare const AtomTextBanner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Text/Text").TextTypes, import("../../Atoms/Text/Text").TextTypes>, {
20
+ moleculeVariant: string;
21
+ }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Text/Text").TextTypes>, keyof import("react").Component<any, {}, any>>;
19
22
  export declare const AtomHeading: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Heading/Heading").HeadingTypes, import("../../Atoms/Heading/Heading").HeadingTypes>, {
20
23
  moleculeVariant: string;
21
24
  }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Heading/Heading").HeadingTypes>, keyof import("react").Component<any, {}, any>>;
@@ -8,6 +8,5 @@ export interface NavigationTypes {
8
8
  to: string;
9
9
  }[];
10
10
  onLogoClick?: () => void;
11
- onTabClick: (label: string) => void;
12
11
  }
13
12
  export declare const Navigation: React.FC<NavigationTypes>;