Skip to content

Commit 0071162

Browse files
committed
remove unused imports
1 parent c230820 commit 0071162

File tree

6 files changed

+4
-9
lines changed

6 files changed

+4
-9
lines changed

components/blog/BlogPostsContainer/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { BlogCardsColumns } from '@/components/containers/CardColumns/BlogCardsColumns';
2-
import Card from '@/components/containers/Card';
32
import { BlogCard } from '@/components/containers/Card/BlogCard';
43
import Title from '@/components/snippets/Title';
54
import Link from 'next/link';

components/containers/Card/styles.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import styled, { css } from 'styled-components';
22
import Image from 'next/image';
3-
import BlogPostsContainer from '@/components/blog/BlogPostsContainer';
43
import * as m from '@/styles/_mixins';
54
import {
65
$white,

components/containers/Row/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import S from './styles';
22

3-
export function Row({ customClass, children, styles }) {
4-
return <S.Row style={styles}>{children}</S.Row>;
3+
export function Row({ customClass, children }) {
4+
return <S.Row>{children}</S.Row>;
55
}
66

7-
export function RowAlignLeft({ customClass, children, styles }) {
8-
return <S.RowAlignLeft style={styles}>{children}</S.RowAlignLeft>;
7+
export function RowAlignLeft({ customClass, children }) {
8+
return <S.RowAlignLeft>{children}</S.RowAlignLeft>;
99
}

components/containers/TwoColumn/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default function TwoColumn({
1212
color,
1313
bgColor,
1414
link,
15-
customInnerClass,
1615
customBtnClass,
1716
$btnColorScheme,
1817
linkText = 'Learn more',

components/layout/Footer/styles.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import styled, { css } from 'styled-components';
2-
import Image from 'next/image';
32
import Container from '@/components/containers/Container';
43
import * as m from '@/styles/_mixins';
54
import { $white, $darkBgColor } from '@/styles/_variables';

components/mailchimp/NewsletterForm/styles.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import * as m from '@/styles/_mixins';
44
import {
55
$white,
66
$error,
7-
$transparent,
87
$darkBgColor,
98
$primaryAccentColor,
109
$primaryContentColor,

0 commit comments

Comments
 (0)