prisma-goat 0.3.4 → 0.3.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.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Version
4
4
 
5
- ### 0.3.4
5
+ ### 0.3.5
6
6
 
7
7
  ---
8
8
 
@@ -56,6 +56,66 @@ export declare type CircularProgressProps = HTMLAttributes<HTMLDivElement> & {
56
56
  strokeWidth?: "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14";
57
57
  };
58
58
 
59
+ export declare const Footer: ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
60
+ variant?: "goatData" | "secondary" | "experiences";
61
+ logo?: string;
62
+ heightLogo?: string;
63
+ widthLogo?: string;
64
+ items?: {
65
+ label: string;
66
+ href: string;
67
+ refId?: string;
68
+ }[];
69
+ contact?: {
70
+ label: string;
71
+ description: string;
72
+ type: string;
73
+ descrption2?: string;
74
+ }[];
75
+ dataFiscal?: {
76
+ href: string;
77
+ src: string;
78
+ target: string;
79
+ };
80
+ redes?: {
81
+ label: string;
82
+ type: string;
83
+ icon?: IconType;
84
+ }[];
85
+ company?: string;
86
+ } & {
87
+ children?: ReactNode | undefined;
88
+ } & RefAttributes<HTMLElement>>;
89
+
90
+ export declare type FooterProps = HTMLAttributes<HTMLElement> & {
91
+ variant?: "goatData" | "secondary" | "experiences";
92
+ logo?: string;
93
+ heightLogo?: string;
94
+ widthLogo?: string;
95
+ items?: {
96
+ label: string;
97
+ href: string;
98
+ refId?: string;
99
+ }[];
100
+ contact?: {
101
+ label: string;
102
+ description: string;
103
+ type: string;
104
+ descrption2?: string;
105
+ }[];
106
+ dataFiscal?: {
107
+ href: string;
108
+ src: string;
109
+ target: string;
110
+ };
111
+ redes?: {
112
+ label: string;
113
+ type: string;
114
+ icon?: IconType;
115
+ }[];
116
+ company?: string;
117
+ };
118
+
59
119
  export declare const Header: ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
60
120
  images: {
61
121
  src: string;