summaryrefslogtreecommitdiffstats
path: root/src/components/Copyright/Copyright.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Copyright/Copyright.tsx')
-rw-r--r--src/components/Copyright/Copyright.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Copyright/Copyright.tsx b/src/components/Copyright/Copyright.tsx
index 0dc6247..9a57f9c 100644
--- a/src/components/Copyright/Copyright.tsx
+++ b/src/components/Copyright/Copyright.tsx
@@ -1,4 +1,4 @@
-import CopyrightIcon from '@assets/images/cc-by-sa.svg';
+import { CopyrightIcon } from '@components/Icons';
import { config } from '@config/website';
import styles from './Copyright.module.scss';
@@ -6,7 +6,7 @@ const Copyright = () => {
return (
<p className={styles.wrapper}>
<span>{config.name}</span>
- <CopyrightIcon className={styles.icon} />
+ <CopyrightIcon />
<span>
{config.copyright.startYear} - {config.copyright.endYear}
</span>