aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/cog.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/cog.tsx')
-rw-r--r--src/components/atoms/icons/cog.tsx4
1 files changed, 2 insertions, 2 deletions
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"