summaryrefslogtreecommitdiffstats
path: root/src/components/Buttons/index.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-27 11:20:26 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-27 11:20:26 +0100
commit395571bd89498fce46d37f3853cf718387fd0d9a (patch)
tree0b1a405fb82484e31f62f72485feac18ebd29ae2 /src/components/Buttons/index.tsx
parent7deed83dbb8835727c743662bee776794d460e74 (diff)
chore: add a theme toggle
Dark theme is not implemented yet.
Diffstat (limited to 'src/components/Buttons/index.tsx')
-rw-r--r--src/components/Buttons/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Buttons/index.tsx b/src/components/Buttons/index.tsx
index aa1291e..53d4e91 100644
--- a/src/components/Buttons/index.tsx
+++ b/src/components/Buttons/index.tsx
@@ -1,5 +1,6 @@
import Button from './Button/Button';
import ButtonSearch from './ButtonSearch/ButtonSearch';
import ButtonSubmit from './ButtonSubmit/ButtonSubmit';
+import ButtonTheme from './ButtonTheme/ButtonTheme';
-export { Button, ButtonSearch, ButtonSubmit };
+export { Button, ButtonSearch, ButtonSubmit, ButtonTheme };