summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/home.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-31 23:13:53 +0200
committerArmand Philippot <git@armandphilippot.com>2022-03-31 23:17:18 +0200
commit9627efaf47db699ae379fda4db3abd77c55fe8f1 (patch)
tree73e473b4bb76939317faba6c3373eb4009f44eeb /src/components/atoms/icons/home.module.scss
parent82b70a23bc8fabedc8333f5063a858f7e90f253f (diff)
chore: add a Home icon component
Diffstat (limited to 'src/components/atoms/icons/home.module.scss')
-rw-r--r--src/components/atoms/icons/home.module.scss41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/components/atoms/icons/home.module.scss b/src/components/atoms/icons/home.module.scss
new file mode 100644
index 0000000..48dcc6c
--- /dev/null
+++ b/src/components/atoms/icons/home.module.scss
@@ -0,0 +1,41 @@
+@use "@styles/abstracts/functions" as fun;
+
+.icon {
+ display: block;
+ width: var(--icon-size, #{fun.convert-px(40)});
+}
+
+.wall {
+ fill: var(--color-bg);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}
+
+.indoor {
+ fill: var(--color-shadow-dark);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}
+
+.door {
+ fill: var(--color-primary-lighter);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}
+
+.roof {
+ fill: var(--color-primary-lighter);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}
+
+.chimney {
+ fill: var(--color-bg);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}
+
+.lines {
+ fill: var(--color-primary-darker);
+ stroke-width: 4;
+}