aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components/button/IconButton.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/components/button/IconButton.tsx')
-rw-r--r--FrontEnd/src/components/button/IconButton.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/components/button/IconButton.tsx b/FrontEnd/src/components/button/IconButton.tsx
index 95c58887..e0862167 100644
--- a/FrontEnd/src/components/button/IconButton.tsx
+++ b/FrontEnd/src/components/button/IconButton.tsx
@@ -1,13 +1,13 @@
import { ComponentPropsWithoutRef } from "react";
import classNames from "classnames";
-import { ThemeColor } from "../common";
+import { ClickableColor } from "../common";
import "./IconButton.css";
interface IconButtonProps extends ComponentPropsWithoutRef<"i"> {
icon: string;
- color?: ThemeColor | "grayscale";
+ color?: ClickableColor;
large?: boolean;
disabled?: boolean; // TODO: Not implemented
}