Skip to content

Commit 0dadd5a

Browse files
committed
added bck react imports
1 parent b93ae2d commit 0dadd5a

File tree

43 files changed

+43
-42
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+43
-42
lines changed

src/components/content-presentation/icons/__tests__/Icons.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { HTMLProps, FC } from 'react';
1+
import React, { HTMLProps, FC } from 'react';
22
import { render } from '@testing-library/react';
33
import * as Icons from '../';
44

src/components/content-presentation/icons/individual/ArrowLeft.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const ArrowLeft: FC<BaseIconSVGProps> = (props) => (

src/components/content-presentation/icons/individual/ArrowRight.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const ArrowRight: FC<BaseIconSVGProps> = (props) => (

src/components/content-presentation/icons/individual/ArrowRightCircle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const ArrowRightCircle: FC<BaseIconSVGProps> = (props) => (

src/components/content-presentation/icons/individual/ChevronDown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const ChevronDown: FC<BaseIconSVGProps> = (props) => (

src/components/content-presentation/icons/individual/ChevronLeft.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const ChevronLeft: FC<BaseIconSVGProps> = (props) => (

src/components/content-presentation/icons/individual/ChevronRight.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const ChevronRight: FC<BaseIconSVGProps> = (props) => (

src/components/content-presentation/icons/individual/ChevronRightCircle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22

33
export const ChevronRightCircle: FC = () => (
44
<svg

src/components/content-presentation/icons/individual/Close.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const Close: FC<BaseIconSVGProps> = (props) => (

src/components/content-presentation/icons/individual/Cross.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC } from 'react';
1+
import React, { FC } from 'react';
22
import { BaseIconSVGProps, BaseIconSVG } from '../BaseIcon';
33

44
export const Cross: FC<BaseIconSVGProps> = (props) => (

0 commit comments

Comments
 (0)