aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Icons/Copyright/Copyright.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-17 16:41:53 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-17 16:41:53 +0100
commit86d3e30ef02585d5089dce3aa2757ca2cb4e4edf (patch)
tree8102a6f3fe093322062bdb6b11d97f8fa5f388df /src/components/Icons/Copyright/Copyright.module.scss
parent90ffd597a35891f71665ee442b90e99d6e579118 (diff)
chore: replace copyright icon import with custom component
It allows me to set the colors with CSS and it will be easier to implement dark mode.
Diffstat (limited to 'src/components/Icons/Copyright/Copyright.module.scss')
-rw-r--r--src/components/Icons/Copyright/Copyright.module.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/Icons/Copyright/Copyright.module.scss b/src/components/Icons/Copyright/Copyright.module.scss
new file mode 100644
index 0000000..0497c1d
--- /dev/null
+++ b/src/components/Icons/Copyright/Copyright.module.scss
@@ -0,0 +1,8 @@
+@use "@styles/abstracts/functions" as fun;
+
+.icon {
+ display: block;
+ margin: auto;
+ width: var(--icon-size, #{fun.convert-px(40)});
+ fill: var(--color-fg);
+}