aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components/button/Button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/components/button/Button.tsx')
-rw-r--r--FrontEnd/src/components/button/Button.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/components/button/Button.tsx b/FrontEnd/src/components/button/Button.tsx
index 6c38e130..30ea8c11 100644
--- a/FrontEnd/src/components/button/Button.tsx
+++ b/FrontEnd/src/components/button/Button.tsx
@@ -1,12 +1,12 @@
import { ComponentPropsWithoutRef, Ref } from "react";
import classNames from "classnames";
-import { Text, useC, ThemeColor } from "../common";
+import { Text, useC, ClickableColor } from "../common";
import "./Button.css";
interface ButtonProps extends ComponentPropsWithoutRef<"button"> {
- color?: ThemeColor;
+ color?: ClickableColor;
text?: Text;
outline?: boolean;
buttonRef?: Ref<HTMLButtonElement> | null;