summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons')
-rw-r--r--src/components/atoms/icons/arrow.tsx4
-rw-r--r--src/components/atoms/icons/career.tsx4
-rw-r--r--src/components/atoms/icons/cc-by-sa.tsx4
-rw-r--r--src/components/atoms/icons/close.tsx4
-rw-r--r--src/components/atoms/icons/cog.tsx4
-rw-r--r--src/components/atoms/icons/computer-screen.tsx4
-rw-r--r--src/components/atoms/icons/envelop.tsx4
-rw-r--r--src/components/atoms/icons/hamburger.tsx2
-rw-r--r--src/components/atoms/icons/home.tsx4
-rw-r--r--src/components/atoms/icons/magnifying-glass.tsx4
-rw-r--r--src/components/atoms/icons/moon.tsx6
-rw-r--r--src/components/atoms/icons/plus-minus.tsx2
-rw-r--r--src/components/atoms/icons/posts-stack.tsx4
-rw-r--r--src/components/atoms/icons/sun.tsx6
14 files changed, 28 insertions, 28 deletions
diff --git a/src/components/atoms/icons/arrow.tsx b/src/components/atoms/icons/arrow.tsx
index 5f3c460..2962530 100644
--- a/src/components/atoms/icons/arrow.tsx
+++ b/src/components/atoms/icons/arrow.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './arrow.module.scss';
export type ArrowDirection = 'top' | 'right' | 'bottom' | 'left';
@@ -19,7 +19,7 @@ export type ArrowProps = {
*
* Render a svg arrow icon.
*/
-const Arrow: VFC<ArrowProps> = ({ className = '', direction }) => {
+const Arrow: FC<ArrowProps> = ({ className = '', direction }) => {
const directionClass = styles[`icon--${direction}`];
const classes = `${styles.icon} ${directionClass} ${className}`;
diff --git a/src/components/atoms/icons/career.tsx b/src/components/atoms/icons/career.tsx
index 28edcc7..f28d399 100644
--- a/src/components/atoms/icons/career.tsx
+++ b/src/components/atoms/icons/career.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './career.module.scss';
export type CareerProps = {
@@ -13,7 +13,7 @@ export type CareerProps = {
*
* Render a career svg icon.
*/
-const Career: VFC<CareerProps> = ({ className = '' }) => {
+const Career: FC<CareerProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/cc-by-sa.tsx b/src/components/atoms/icons/cc-by-sa.tsx
index 552504e..8239154 100644
--- a/src/components/atoms/icons/cc-by-sa.tsx
+++ b/src/components/atoms/icons/cc-by-sa.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import { useIntl } from 'react-intl';
import styles from './cc-by-sa.module.scss';
@@ -14,7 +14,7 @@ export type CCBySAProps = {
*
* Render a CC BY SA svg icon.
*/
-const CCBySA: VFC<CCBySAProps> = ({ className = '' }) => {
+const CCBySA: FC<CCBySAProps> = ({ className = '' }) => {
const intl = useIntl();
return (
diff --git a/src/components/atoms/icons/close.tsx b/src/components/atoms/icons/close.tsx
index eb9ce7c..3e0adb5 100644
--- a/src/components/atoms/icons/close.tsx
+++ b/src/components/atoms/icons/close.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './close.module.scss';
export type CloseProps = {
@@ -13,7 +13,7 @@ export type CloseProps = {
*
* Render a close svg icon.
*/
-const Close: VFC<CloseProps> = ({ className = '' }) => {
+const Close: FC<CloseProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/cog.tsx b/src/components/atoms/icons/cog.tsx
index df6d54d..9e78a7b 100644
--- a/src/components/atoms/icons/cog.tsx
+++ b/src/components/atoms/icons/cog.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './cog.module.scss';
export type CogProps = {
@@ -13,7 +13,7 @@ export type CogProps = {
*
* Render a cog svg icon.
*/
-const Cog: VFC<CogProps> = ({ className = '' }) => {
+const Cog: FC<CogProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/computer-screen.tsx b/src/components/atoms/icons/computer-screen.tsx
index 310836f..8786139 100644
--- a/src/components/atoms/icons/computer-screen.tsx
+++ b/src/components/atoms/icons/computer-screen.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './computer-screen.module.scss';
export type ComputerScreenProps = {
@@ -13,7 +13,7 @@ export type ComputerScreenProps = {
*
* Render a computer screen svg icon.
*/
-const ComputerScreen: VFC<ComputerScreenProps> = ({ className = '' }) => {
+const ComputerScreen: FC<ComputerScreenProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/envelop.tsx b/src/components/atoms/icons/envelop.tsx
index 7b50d1d..84dca97 100644
--- a/src/components/atoms/icons/envelop.tsx
+++ b/src/components/atoms/icons/envelop.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './envelop.module.scss';
export type EnvelopProps = {
@@ -13,7 +13,7 @@ export type EnvelopProps = {
*
* Render an envelop svg icon.
*/
-const Envelop: VFC<EnvelopProps> = ({ className = '' }) => {
+const Envelop: FC<EnvelopProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/hamburger.tsx b/src/components/atoms/icons/hamburger.tsx
index 7e7c2c9..93aed2a 100644
--- a/src/components/atoms/icons/hamburger.tsx
+++ b/src/components/atoms/icons/hamburger.tsx
@@ -1,7 +1,7 @@
import { FC } from 'react';
import styles from './hamburger.module.scss';
-type HamburgerProps = {
+export type HamburgerProps = {
/**
* Set additional classnames to the icon wrapper.
*/
diff --git a/src/components/atoms/icons/home.tsx b/src/components/atoms/icons/home.tsx
index 71bbc4a..3b6732d 100644
--- a/src/components/atoms/icons/home.tsx
+++ b/src/components/atoms/icons/home.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './home.module.scss';
export type HomeProps = {
@@ -13,7 +13,7 @@ export type HomeProps = {
*
* Render a home svg icon.
*/
-const Home: VFC<HomeProps> = ({ className = '' }) => {
+const Home: FC<HomeProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/magnifying-glass.tsx b/src/components/atoms/icons/magnifying-glass.tsx
index 445ef10..1ca2a44 100644
--- a/src/components/atoms/icons/magnifying-glass.tsx
+++ b/src/components/atoms/icons/magnifying-glass.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './magnifying-glass.module.scss';
export type MagnifyingGlassProps = {
@@ -13,7 +13,7 @@ export type MagnifyingGlassProps = {
*
* Render a magnifying glass svg icon.
*/
-const MagnifyingGlass: VFC<MagnifyingGlassProps> = ({ className = '' }) => {
+const MagnifyingGlass: FC<MagnifyingGlassProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/moon.tsx b/src/components/atoms/icons/moon.tsx
index 4f52319..ec4fa0c 100644
--- a/src/components/atoms/icons/moon.tsx
+++ b/src/components/atoms/icons/moon.tsx
@@ -1,7 +1,7 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './moon.module.scss';
-type MoonProps = {
+export type MoonProps = {
/**
* Set additional classnames to the icon.
*/
@@ -12,7 +12,7 @@ type MoonProps = {
title?: string;
};
-const Moon: VFC<MoonProps> = ({ className = '', title }) => {
+const Moon: FC<MoonProps> = ({ className = '', title }) => {
return (
<svg
className={`${styles.icon} ${className}`}
diff --git a/src/components/atoms/icons/plus-minus.tsx b/src/components/atoms/icons/plus-minus.tsx
index 78aa14a..e8897b7 100644
--- a/src/components/atoms/icons/plus-minus.tsx
+++ b/src/components/atoms/icons/plus-minus.tsx
@@ -1,7 +1,7 @@
import { FC } from 'react';
import styles from './plus-minus.module.scss';
-type PlusMinusProps = {
+export type PlusMinusProps = {
/**
* Set additional classnames to the icon.
*/
diff --git a/src/components/atoms/icons/posts-stack.tsx b/src/components/atoms/icons/posts-stack.tsx
index 1998d25..ab21323 100644
--- a/src/components/atoms/icons/posts-stack.tsx
+++ b/src/components/atoms/icons/posts-stack.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './posts-stack.module.scss';
export type PostsStackProps = {
@@ -13,7 +13,7 @@ export type PostsStackProps = {
*
* Render a posts stack svg icon.
*/
-const PostsStack: VFC<PostsStackProps> = ({ className = '' }) => {
+const PostsStack: FC<PostsStackProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 100 100"
diff --git a/src/components/atoms/icons/sun.tsx b/src/components/atoms/icons/sun.tsx
index fa9d922..ca31747 100644
--- a/src/components/atoms/icons/sun.tsx
+++ b/src/components/atoms/icons/sun.tsx
@@ -1,7 +1,7 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './sun.module.scss';
-type SunProps = {
+export type SunProps = {
/**
* Set additional classnames to the icon.
*/
@@ -17,7 +17,7 @@ type SunProps = {
*
* Render a svg sun icon.
*/
-const Sun: VFC<SunProps> = ({ className = '', title }) => {
+const Sun: FC<SunProps> = ({ className = '', title }) => {
return (
<svg
className={`${styles.sun} ${className}`}