@sikka/hawa 0.0.219 → 0.0.221

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,20 @@
1
+ /// <reference types="react" />
2
+ type FooterTypes = {
3
+ logoText?: string;
4
+ logoURL?: string;
5
+ socialLinks?: {
6
+ twitter?: string;
7
+ instagram?: string;
8
+ tiktok?: string;
9
+ snapchat?: string;
10
+ };
11
+ footerLinks?: {
12
+ title: string;
13
+ pages: {
14
+ label: string;
15
+ link: string;
16
+ }[];
17
+ }[];
18
+ };
19
+ export declare const Footer: React.FunctionComponent<FooterTypes>;
20
+ export {};
@@ -5,3 +5,4 @@ export * from "./HawaAppLayout";
5
5
  export * from "./HawaContainer";
6
6
  export * from "./SimpleGrid";
7
7
  export * from "./AppSidebar";
8
+ export * from "./Footer";
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ type TLeadGenerator = {
3
+ variant?: "outlined" | "contained" | "neobrutalism";
4
+ texts: {
5
+ title: string;
6
+ subtitle: string;
7
+ submit: string;
8
+ };
9
+ handleNewsletterSub: (e: string) => void;
10
+ };
11
+ export declare const LeadGenerator: React.FunctionComponent<TLeadGenerator>;
12
+ export {};
@@ -2,3 +2,4 @@ export * from "./NotFound";
2
2
  export * from "./EmptyState";
3
3
  export * from "./Newsletter";
4
4
  export * from "./Testimonial";
5
+ export * from "./LeadGenerator";
@@ -5,6 +5,7 @@ type TCheckBoxTypes = {
5
5
  helperText?: any;
6
6
  id: string;
7
7
  onChange?: (e: any) => void;
8
+ val?: boolean;
8
9
  };
9
10
  export declare const HawaCheckbox: React.FunctionComponent<TCheckBoxTypes>;
10
11
  export {};