@npm_leadtech/legal-lib-components 5.26.1-f → 5.26.1

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 (46) hide show
  1. package/dist/images/componentsSvg/PhoneIcon24px.tsx +2 -4
  2. package/dist/src/components/atoms/index.d.ts +0 -2
  3. package/dist/src/components/atoms/index.js +0 -2
  4. package/dist/src/components/atoms/index.ts +0 -2
  5. package/dist/src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.styled.js +1 -1
  6. package/dist/src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.styled.ts +1 -1
  7. package/dist/src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.js +7 -1
  8. package/dist/src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.ts +7 -1
  9. package/dist/tsconfig.build.tsbuildinfo +1 -1
  10. package/package.json +1 -1
  11. package/dist/images/componentsSvg/IconWeb.d.ts +0 -2
  12. package/dist/images/componentsSvg/IconWeb.js +0 -4
  13. package/dist/images/componentsSvg/IconWeb.tsx +0 -31
  14. package/dist/images/componentsSvg/PhoneIcon.d.ts +0 -6
  15. package/dist/images/componentsSvg/PhoneIcon.js +0 -4
  16. package/dist/images/componentsSvg/PhoneIcon.tsx +0 -18
  17. package/dist/images/svg/facebook.svg +0 -4
  18. package/dist/images/svg/icon-24-px-satisfaction-grey.svg +0 -3
  19. package/dist/images/svg/icon-24-px-security_black.svg +0 -3
  20. package/dist/images/svg/linkedin.svg +0 -4
  21. package/dist/images/svg/pinterest.svg +0 -4
  22. package/dist/images/svg/x.svg +0 -4
  23. package/dist/src/components/atoms/FixedFooter/FixedFooter.d.ts +0 -3
  24. package/dist/src/components/atoms/FixedFooter/FixedFooter.js +0 -74
  25. package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.d.ts +0 -1
  26. package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.js +0 -891
  27. package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.ts +0 -892
  28. package/dist/src/components/atoms/FixedFooter/FixedFooter.tsx +0 -306
  29. package/dist/src/components/atoms/FixedFooter/FixedFooterProps.d.ts +0 -69
  30. package/dist/src/components/atoms/FixedFooter/FixedFooterProps.js +0 -1
  31. package/dist/src/components/atoms/FixedFooter/FixedFooterProps.ts +0 -71
  32. package/dist/src/components/atoms/FixedFooter/index.d.ts +0 -2
  33. package/dist/src/components/atoms/FixedFooter/index.js +0 -2
  34. package/dist/src/components/atoms/FixedFooter/index.ts +0 -2
  35. package/dist/src/components/atoms/PreFooter/PreFooter.d.ts +0 -3
  36. package/dist/src/components/atoms/PreFooter/PreFooter.js +0 -8
  37. package/dist/src/components/atoms/PreFooter/PreFooter.styled.d.ts +0 -1
  38. package/dist/src/components/atoms/PreFooter/PreFooter.styled.js +0 -43
  39. package/dist/src/components/atoms/PreFooter/PreFooter.styled.ts +0 -43
  40. package/dist/src/components/atoms/PreFooter/PreFooter.tsx +0 -34
  41. package/dist/src/components/atoms/PreFooter/PreFooterProps.d.ts +0 -8
  42. package/dist/src/components/atoms/PreFooter/PreFooterProps.js +0 -1
  43. package/dist/src/components/atoms/PreFooter/PreFooterProps.ts +0 -8
  44. package/dist/src/components/atoms/PreFooter/index.d.ts +0 -2
  45. package/dist/src/components/atoms/PreFooter/index.js +0 -2
  46. package/dist/src/components/atoms/PreFooter/index.ts +0 -2
@@ -1,306 +0,0 @@
1
- import { Button } from '../Button'
2
- import { ContactBox } from '../../molecules/ContactBox'
3
- import { Disclaimer } from '../Disclaimer'
4
- import { FixedFooterProps } from './FixedFooterProps'
5
- import { FixedFooterStyled } from './FixedFooter.styled'
6
- import { IconWeb } from '../../../../images/componentsSvg/IconWeb'
7
- import { Logo } from '../Logo'
8
- import { PhoneIcon } from '../../../../images/componentsSvg/PhoneIcon'
9
- import React from 'react'
10
- import { WideInfoBar } from '../WideInfoBar'
11
- import facebook from '../../../../images/svg/facebook.svg'
12
- import guaranteeIconGrey from '../../../../images/svg/icon-24-px-satisfaction-grey.svg'
13
- import linkedin from '../../../../images/svg/linkedin.svg'
14
- import pinterest from '../../../../images/svg/pinterest.svg'
15
- import securityIconBlack from '../../../../images/svg/icon-24-px-security_black.svg'
16
- import x from '../../../../images/svg/x.svg'
17
-
18
- export const FixedFooter: React.FC<FixedFooterProps> = ({
19
- footerData = {},
20
- config = {
21
- siteName: 'LawDistrict',
22
- sitePhone: '123-456-7890',
23
- siteSchedule: 'Monday - Friday, 9am - 5pm',
24
- siteUrl: 'https://www.lawdistrict.com',
25
- hasGrav: true,
26
- hasCookieMessage: true,
27
- hasContactBar: false,
28
- hasTrustPilot: true,
29
- isJonSnow: false,
30
- isSEMPage: false,
31
- isMobile: false,
32
- isTablet: false,
33
- isDesktop: true,
34
- isAnonymousPayment: false,
35
- hide: false,
36
- noFooter: false
37
- },
38
- footer = {
39
- disclaimerText: '',
40
- guaranteeText: '',
41
- securityText: '',
42
- bottomFixedBlock: <></>,
43
- createDocumentBlock: <></>,
44
- trustPilotWidget: <></>
45
- },
46
- preFooter = {
47
- show: true,
48
- title: 'Try LawDistrict Now',
49
- columns: [
50
- 'Instant and complete access to our entire library of legal forms',
51
- 'Edit, download and print in PDF and Word format from any device',
52
- 'Save time and money on legal document creation'
53
- ],
54
- hasButton: true,
55
- buttonLabel: 'Get Unlimited Access Now',
56
- buttonLink: './',
57
- buttonClick: () => {}
58
- },
59
- productsBlock = {
60
- title: 'Products',
61
- productsCategories: <></>,
62
- allProductsLink: <></>
63
- },
64
- popularDocumentsBlock = {
65
- title: 'Popular Documents',
66
- popularDocuments: <></>
67
- },
68
- companyBlock = {
69
- title: 'Company',
70
- links: <></>
71
- },
72
- helpBlock = {
73
- title: 'Help',
74
- links: <></>
75
- },
76
- resourcesBlock = {
77
- title: 'Resources',
78
- links: <></>
79
- },
80
- languageSelector = {
81
- show: false,
82
- content: <></>
83
- }
84
- }) => {
85
- console.log('reveiced data', footerData)
86
- return (
87
- <FixedFooterStyled>
88
- {preFooter.show && (
89
- <section className={'prefooter'}>
90
- <div className='wrapper'>
91
- <div className='prefooter-container'>
92
- <div className='serif --hero prefooter__title'>{preFooter.title}</div>
93
- <div className={'prefooter--columns'}>
94
- {preFooter.columns.map((column, index) => (
95
- <p key={index} className='prefooter--columns__text'>
96
- {column}
97
- </p>
98
- ))}
99
- </div>
100
- {preFooter.hasButton && (
101
- <Button
102
- label={preFooter.buttonLabel}
103
- onClick={preFooter.buttonClick}
104
- link={preFooter.buttonLink}
105
- dataQa={'cta-footer'}
106
- isExternal
107
- hasNoFollow
108
- />
109
- )}
110
- </div>
111
- </div>
112
- </section>
113
- )}
114
- {config.isSEMPage && config.isMobile && (
115
- <footer className={'sem-footer'}>
116
- <section className={'sem-footer__wrapper'}>
117
- <ul className='sem-footer__legal-links'>{companyBlock.links}</ul>
118
- <div className='sem-footer__contact-info'>
119
- <div className='sem-footer__contact-info__phone'>
120
- <PhoneIcon width={20} height={20} fill={'white'} />
121
- <b>{config.sitePhone} </b>
122
- </div>
123
- <div className='sem-footer__contact-info__schedule'>{config.siteSchedule}</div>
124
- </div>
125
- <div className='fixed-container'>{footer.createDocumentBlock}</div>
126
- </section>
127
- </footer>
128
- )}
129
- {!config.isSEMPage && (
130
- <footer>
131
- {!config.hide && !config.noFooter ? (
132
- <>
133
- <div className='language-selector-mobile-container'>
134
- {languageSelector.show === true && languageSelector.content}
135
- </div>
136
- <section className={'footer__wrapper'}>
137
- <div className={'footer__products'}>
138
- <p className={'sans-serif --small footer-links__title'}>{productsBlock.title}</p>
139
- {productsBlock.productsCategories}
140
- <div className={'sans-serif --extra-small product-categories'}>{productsBlock.allProductsLink}</div>
141
- </div>
142
- <div className={'footer__popular-documents'}>
143
- <p className={'sans-serif --small footer-links__title'}>{popularDocumentsBlock.title}</p>
144
- <ul>{popularDocumentsBlock.popularDocuments}</ul>
145
- {config.isTablet && (
146
- <div className='footer__help__tablet'>
147
- <p className={'sans-serif --small footer-links__title'}>{helpBlock.title}</p>
148
- <ul>{helpBlock.links}</ul>
149
- </div>
150
- )}
151
- </div>
152
- {(config.isMobile || config.isDesktop) && (
153
- <div className={'footer__company'}>
154
- <p className={'sans-serif --small footer-links__title'}>{companyBlock.title}</p>
155
- <ul>{companyBlock.links}</ul>
156
- </div>
157
- )}
158
- <div className='footer__company__resources__findUs'>
159
- {config.isTablet && (
160
- <>
161
- <p className={'sans-serif --small footer-links__title'}>{companyBlock.title}</p>
162
- <ul>{companyBlock.links}</ul>
163
-
164
- {!config.isJonSnow && config.hasGrav && config.isTablet && (
165
- <div className='footer__resources'>
166
- <p className={'sans-serif --small footer-links__title'}>{resourcesBlock.title}</p>
167
- <ul>{resourcesBlock.links}</ul>
168
- </div>
169
- )}
170
- </>
171
- )}
172
- </div>
173
- {!config.isTablet && (
174
- <div className={'footer__help__resources'}>
175
- <div>
176
- <div className='footer__help'>
177
- <p className={'sans-serif --small footer-links__title'}>{helpBlock.title}</p>
178
- <ul>{helpBlock.links}</ul>
179
- </div>
180
- {!config.isJonSnow && config.hasGrav && (
181
- <div className='footer__resources'>
182
- <p className={'sans-serif --small footer-links__title'}>{resourcesBlock.title}</p>
183
- <ul>{resourcesBlock.links}</ul>
184
- </div>
185
- )}
186
- </div>
187
- </div>
188
- )}
189
- <div className={'footer__findUs'}>
190
- <div className='find-us-container'>
191
- {!config.isJonSnow && (
192
- <>
193
- <div className='find-us-content'>
194
- <p className={'sans-serif --small footer-links__title'}>Find us</p>
195
- <ul>
196
- <li>
197
- <a
198
- href={'https://www.facebook.com/lawdistrictlegal'}
199
- rel='noopener noreferrer'
200
- target='_blank'
201
- >
202
- <img src={facebook} alt='Facebook logo' width='32' height='32' />
203
- </a>
204
- </li>
205
- <li>
206
- <a href={'https://twitter.com/district_law'} rel='noopener noreferrer' target='_blank'>
207
- <img src={x} alt='Twitter logo' width='32' height='32' />
208
- </a>
209
- </li>
210
- <li>
211
- <a
212
- href={'https://www.linkedin.com/company/law-district/'}
213
- rel='noopener noreferrer'
214
- target='_blank'
215
- >
216
- <img src={linkedin} alt='Linkedin logo' width='32' height='32' />
217
- </a>
218
- </li>
219
- <li>
220
- <a
221
- href={'https://www.pinterest.com/lawdistrict/'}
222
- rel='noopener noreferrer'
223
- target='_blank'
224
- >
225
- <img src={pinterest} alt='Pinterest logo' width='32' height='32' />
226
- </a>
227
- </li>
228
- </ul>
229
- </div>
230
- <div className={'footer-contact-box'}>
231
- <span className='footer-contact-box_phone'>{config.sitePhone}</span>
232
- <Button
233
- centered
234
- isExternal
235
- link={`tel:${config.sitePhone}`}
236
- givenClass={'footer-contact-box-button'}
237
- label={config.sitePhone}
238
- dataQa={'footer_contact_box'}
239
- />
240
- <span className='footer-contact-box_schedule'>{config.siteSchedule}</span>
241
- </div>
242
- </>
243
- )}
244
- <div className={'footer__logo'}>
245
- <Logo
246
- className='footer__lawdistrict'
247
- siteName={config.siteName}
248
- width='138'
249
- height='24'
250
- type='white'
251
- />
252
- </div>
253
- </div>
254
- {config.hasTrustPilot && footer.trustPilotWidget}
255
- </div>
256
- {!config.isJonSnow && (
257
- <div className={'footer-mobile-contact-box'}>
258
- <ContactBox
259
- mobile={true}
260
- phone={config.sitePhone}
261
- schedule={config.siteSchedule}
262
- mobileGtmTag='clicked_phone_footer'
263
- dataQa='footer_contact_box'
264
- darkMode
265
- />
266
- </div>
267
- )}
268
- </section>
269
- </>
270
- ) : null}
271
- {config.hasContactBar && (
272
- <WideInfoBar>
273
- <>
274
- <div className={`contact-bar-wrapper ${(config.isJonSnow || config.isAnonymousPayment) && 'hidden'}`}>
275
- <IconWeb />
276
- <div className='contact-bar-wrapper__text'>
277
- <div className='is-mobile'>
278
- <a className='phone' href={`tel:${config.sitePhone}`}>
279
- <strong>{config.sitePhone}</strong>
280
- </a>
281
- {` - ${config.siteSchedule}`}
282
- </div>
283
- <div className='no-mobile'>
284
- <strong>{config.sitePhone}</strong> - {config.siteSchedule}
285
- </div>
286
- </div>
287
- </div>
288
- <div className='contact-bar-wrapper'>
289
- <img src={securityIconBlack} alt='' />
290
- <p className='contact-bar-wrapper__text'>{footer.securityText}</p>
291
- </div>
292
- <div className='contact-bar-wrapper'>
293
- <img src={guaranteeIconGrey} alt='' />
294
- <p className='contact-bar-wrapper__text'>{footer.guaranteeText}</p>
295
- </div>
296
- </>
297
- </WideInfoBar>
298
- )}
299
- {footer.disclaimerText && <Disclaimer text={footer.disclaimerText} siteUrl={config.siteUrl} />}
300
- <div className='fixed-container'>{footer.createDocumentBlock}</div>
301
- </footer>
302
- )}
303
- {footer.bottomFixedBlock}
304
- </FixedFooterStyled>
305
- )
306
- }
@@ -1,69 +0,0 @@
1
- import React from 'react';
2
- export interface Link {
3
- label: string;
4
- url: string;
5
- onClick: () => void;
6
- }
7
- export interface FixedFooterProps {
8
- footerData: object;
9
- config: {
10
- siteName: string;
11
- sitePhone: string;
12
- siteSchedule: string;
13
- siteUrl: string;
14
- hasGrav: boolean;
15
- hasCookieMessage: boolean;
16
- hasContactBar: boolean;
17
- hasTrustPilot: boolean;
18
- isJonSnow: boolean;
19
- isSEMPage: boolean;
20
- isMobile: boolean;
21
- isTablet: boolean;
22
- isDesktop: boolean;
23
- isAnonymousPayment: boolean;
24
- hide: boolean;
25
- noFooter: boolean;
26
- };
27
- footer: {
28
- disclaimerText: string;
29
- guaranteeText: string;
30
- securityText: string;
31
- bottomFixedBlock: React.ReactNode;
32
- createDocumentBlock: React.ReactNode;
33
- trustPilotWidget: React.ReactNode;
34
- };
35
- preFooter: {
36
- show: boolean;
37
- title: string;
38
- columns: string[];
39
- hasButton: boolean;
40
- buttonLabel: string;
41
- buttonLink: string;
42
- buttonClick: () => void;
43
- };
44
- productsBlock: {
45
- title: string;
46
- productsCategories: React.ReactNode;
47
- allProductsLink: React.ReactNode;
48
- };
49
- popularDocumentsBlock: {
50
- title: string;
51
- popularDocuments: React.ReactNode;
52
- };
53
- companyBlock: {
54
- title: string;
55
- links: React.ReactNode;
56
- };
57
- helpBlock: {
58
- title: string;
59
- links: React.ReactNode;
60
- };
61
- resourcesBlock: {
62
- title: string;
63
- links: React.ReactNode;
64
- };
65
- languageSelector: {
66
- show: boolean;
67
- content: React.ReactNode;
68
- };
69
- }
@@ -1,71 +0,0 @@
1
- import React from 'react'
2
-
3
- export interface Link {
4
- label: string
5
- url: string
6
- onClick: () => void
7
- }
8
-
9
- export interface FixedFooterProps {
10
- footerData: object
11
- config: {
12
- siteName: string
13
- sitePhone: string
14
- siteSchedule: string
15
- siteUrl: string
16
- hasGrav: boolean
17
- hasCookieMessage: boolean
18
- hasContactBar: boolean
19
- hasTrustPilot: boolean
20
- isJonSnow: boolean
21
- isSEMPage: boolean
22
- isMobile: boolean
23
- isTablet: boolean
24
- isDesktop: boolean
25
- isAnonymousPayment: boolean
26
- hide: boolean
27
- noFooter: boolean
28
- }
29
- footer: {
30
- disclaimerText: string
31
- guaranteeText: string
32
- securityText: string
33
- bottomFixedBlock: React.ReactNode
34
- createDocumentBlock: React.ReactNode
35
- trustPilotWidget: React.ReactNode
36
- }
37
- preFooter: {
38
- show: boolean
39
- title: string
40
- columns: string[]
41
- hasButton: boolean
42
- buttonLabel: string
43
- buttonLink: string
44
- buttonClick: () => void
45
- }
46
- productsBlock: {
47
- title: string
48
- productsCategories: React.ReactNode
49
- allProductsLink: React.ReactNode
50
- }
51
- popularDocumentsBlock: {
52
- title: string
53
- popularDocuments: React.ReactNode
54
- }
55
- companyBlock: {
56
- title: string
57
- links: React.ReactNode
58
- }
59
- helpBlock: {
60
- title: string
61
- links: React.ReactNode
62
- }
63
- resourcesBlock: {
64
- title: string
65
- links: React.ReactNode
66
- }
67
- languageSelector: {
68
- show: boolean
69
- content: React.ReactNode
70
- }
71
- }
@@ -1,2 +0,0 @@
1
- export * from './FixedFooter';
2
- export * from './FixedFooterProps';
@@ -1,2 +0,0 @@
1
- export * from './FixedFooter';
2
- export * from './FixedFooterProps';
@@ -1,2 +0,0 @@
1
- export * from './FixedFooter'
2
- export * from './FixedFooterProps'
@@ -1,3 +0,0 @@
1
- import React from 'react';
2
- import { PreFooterProps } from './PreFooterProps';
3
- export declare const PreFooter: React.FC<PreFooterProps>;
@@ -1,8 +0,0 @@
1
- import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
2
- import { Button } from '../Button';
3
- import { PreFooterStyled } from './PreFooter.styled';
4
- export const PreFooter = ({ siteName, content, ctaLabel, ctaOnClick, ctaDataQa, ctaLink }) => {
5
- return (_jsx(PreFooterStyled, { children: _jsx("div", { className: 'wrapper', children: _jsxs("div", { className: 'prefooter', children: [_jsxs("div", { className: 'serif --hero prefooter__title', children: ["Try ", siteName, " Now"] }), _jsx("div", { className: 'prefooter__columns', children: content.map((text, index) => {
6
- return (_jsx("p", { className: 'prefooter__columns__text', children: text }, index));
7
- }) }), _jsx(Button, { label: ctaLabel, onClick: ctaOnClick, link: ctaLink, dataQa: ctaDataQa, isExternal: true, hasNoFollow: true })] }) }) }));
8
- };
@@ -1 +0,0 @@
1
- export declare const PreFooterStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,43 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const PreFooterStyled = styled.section `
4
- background-color: var(--primary-main-light-6);
5
- text-align: center;
6
-
7
- .prefooter {
8
- margin: 0 1.5rem;
9
-
10
- @media ${device['landscape-tablets']} {
11
- margin: 0;
12
- }
13
-
14
- &__title {
15
- color: var(--neutral-neutral-1);
16
- display: inline-block;
17
- margin: 2rem 0 0;
18
- }
19
-
20
- &__columns {
21
- display: flex;
22
- flex-direction: column;
23
- align-items: center;
24
- justify-content: space-between;
25
-
26
- @media ${device['landscape-tablets']} {
27
- flex-direction: row;
28
- margin: 0 1rem;
29
- align-items: flex-start;
30
- }
31
-
32
- &__text {
33
- width: 16.375rem;
34
- color: var(--neutral-neutral-1);
35
- margin: 2rem 0.5rem 0 0.5rem;
36
- }
37
- }
38
- .e-button {
39
- display: inline-block;
40
- margin: 2rem 0;
41
- }
42
- }
43
- `;
@@ -1,43 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
- export const PreFooterStyled = styled.section`
4
- background-color: var(--primary-main-light-6);
5
- text-align: center;
6
-
7
- .prefooter {
8
- margin: 0 1.5rem;
9
-
10
- @media ${device['landscape-tablets']} {
11
- margin: 0;
12
- }
13
-
14
- &__title {
15
- color: var(--neutral-neutral-1);
16
- display: inline-block;
17
- margin: 2rem 0 0;
18
- }
19
-
20
- &__columns {
21
- display: flex;
22
- flex-direction: column;
23
- align-items: center;
24
- justify-content: space-between;
25
-
26
- @media ${device['landscape-tablets']} {
27
- flex-direction: row;
28
- margin: 0 1rem;
29
- align-items: flex-start;
30
- }
31
-
32
- &__text {
33
- width: 16.375rem;
34
- color: var(--neutral-neutral-1);
35
- margin: 2rem 0.5rem 0 0.5rem;
36
- }
37
- }
38
- .e-button {
39
- display: inline-block;
40
- margin: 2rem 0;
41
- }
42
- }
43
- `
@@ -1,34 +0,0 @@
1
- import React from 'react'
2
-
3
- import { Button } from '../Button'
4
- import { PreFooterProps } from './PreFooterProps'
5
- import { PreFooterStyled } from './PreFooter.styled'
6
-
7
- export const PreFooter: React.FC<PreFooterProps> = ({
8
- siteName,
9
- content,
10
- ctaLabel,
11
- ctaOnClick,
12
- ctaDataQa,
13
- ctaLink
14
- }) => {
15
- return (
16
- <PreFooterStyled>
17
- <div className='wrapper'>
18
- <div className='prefooter'>
19
- <div className='serif --hero prefooter__title'>Try {siteName} Now</div>
20
- <div className='prefooter__columns'>
21
- {content.map((text, index) => {
22
- return (
23
- <p key={index} className='prefooter__columns__text'>
24
- {text}
25
- </p>
26
- )
27
- })}
28
- </div>
29
- <Button label={ctaLabel} onClick={ctaOnClick} link={ctaLink} dataQa={ctaDataQa} isExternal hasNoFollow />
30
- </div>
31
- </div>
32
- </PreFooterStyled>
33
- )
34
- }
@@ -1,8 +0,0 @@
1
- export interface PreFooterProps {
2
- siteName: string;
3
- content: string[];
4
- ctaLabel: string;
5
- ctaOnClick: () => void;
6
- ctaDataQa: string;
7
- ctaLink: string;
8
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- export interface PreFooterProps {
2
- siteName: string
3
- content: string[]
4
- ctaLabel: string
5
- ctaOnClick: () => void
6
- ctaDataQa: string
7
- ctaLink: string
8
- }
@@ -1,2 +0,0 @@
1
- export * from './PreFooter';
2
- export * from './PreFooterProps';
@@ -1,2 +0,0 @@
1
- export * from './PreFooter';
2
- export * from './PreFooterProps';
@@ -1,2 +0,0 @@
1
- export * from './PreFooter'
2
- export * from './PreFooterProps'