aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/buttons/button/button.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/buttons/button/button.module.scss')
-rw-r--r--src/components/atoms/buttons/button/button.module.scss37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/components/atoms/buttons/button/button.module.scss b/src/components/atoms/buttons/button/button.module.scss
new file mode 100644
index 0000000..508ff9a
--- /dev/null
+++ b/src/components/atoms/buttons/button/button.module.scss
@@ -0,0 +1,37 @@
+@use "../../../../styles/abstracts/placeholders";
+
+.btn {
+ @extend %button;
+
+ &--initial {
+ border-radius: 0;
+ }
+
+ &--circle {
+ @extend %circle-button;
+ }
+
+ &--rectangle {
+ @extend %rectangle-button;
+ }
+
+ &--square {
+ @extend %square-button;
+ }
+
+ &--neutral {
+ background: inherit;
+ }
+
+ &--primary {
+ @extend %primary-button;
+ }
+
+ &--secondary {
+ @extend %secondary-button;
+ }
+
+ &--tertiary {
+ @extend %tertiary-button;
+ }
+}