summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/arrow.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/arrow.module.scss')
-rw-r--r--src/components/atoms/icons/arrow.module.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/atoms/icons/arrow.module.scss b/src/components/atoms/icons/arrow.module.scss
new file mode 100644
index 0000000..76e6aea
--- /dev/null
+++ b/src/components/atoms/icons/arrow.module.scss
@@ -0,0 +1,16 @@
+@use "@styles/abstracts/functions" as fun;
+
+.icon {
+ fill: var(--color-primary);
+ transition: all 0.25s ease-in-out 0s;
+
+ &--left,
+ &--right {
+ width: var(--icon-size, #{fun.convert-px(30)});
+ }
+
+ &--bottom,
+ &--top {
+ height: var(--icon-size, #{fun.convert-px(30)});
+ }
+}