@npm_leadtech/legal-lib-components 7.40.2 → 7.40.3
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/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.js
CHANGED
|
@@ -10,6 +10,6 @@ const TryOurFreeLegalBlogsSection = ({ contentTryOurFreeLegalBlogs }) => {
|
|
|
10
10
|
'wrapper wrapper--responsive how-it-works': contentTryOurFreeLegalBlogs.type === 'How It Works',
|
|
11
11
|
'how-it-works-first-image': contentTryOurFreeLegalBlogs.type === 'How It Works First Image'
|
|
12
12
|
});
|
|
13
|
-
return (_jsx(TryOurFreeLegalBlogsSectionStyled, { className: `try-our-free-legal-blogs-section ${classTry}`, children: _jsx(TryOurFreeLegalBlogsContent, { title: contentTryOurFreeLegalBlogs.title, image: contentTryOurFreeLegalBlogs.image, type: contentTryOurFreeLegalBlogs.type, children: contentTryOurFreeLegalBlogs.children }) }));
|
|
13
|
+
return (_jsx(TryOurFreeLegalBlogsSectionStyled, { className: `try-our-free-legal-blogs-section ${classTry}`, children: _jsx(TryOurFreeLegalBlogsContent, { title: contentTryOurFreeLegalBlogs.title, image: contentTryOurFreeLegalBlogs.image, type: contentTryOurFreeLegalBlogs.type, imageFirstOnMobile: contentTryOurFreeLegalBlogs.imageFirstOnMobile ?? false, children: contentTryOurFreeLegalBlogs.children }) }));
|
|
14
14
|
};
|
|
15
15
|
export default TryOurFreeLegalBlogsSection;
|
package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx
CHANGED
|
@@ -20,6 +20,7 @@ const TryOurFreeLegalBlogsSection: FC<TryOurFreeLegalBlogsSectionProps> = ({ con
|
|
|
20
20
|
title={contentTryOurFreeLegalBlogs.title}
|
|
21
21
|
image={contentTryOurFreeLegalBlogs.image}
|
|
22
22
|
type={contentTryOurFreeLegalBlogs.type}
|
|
23
|
+
imageFirstOnMobile={contentTryOurFreeLegalBlogs.imageFirstOnMobile ?? false}
|
|
23
24
|
>
|
|
24
25
|
{contentTryOurFreeLegalBlogs.children}
|
|
25
26
|
</TryOurFreeLegalBlogsContent>
|