aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components/button/IconButton.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-08-31 00:30:35 +0800
committercrupest <crupest@outlook.com>2023-08-31 00:30:35 +0800
commit9c69024cf5961c3c71fb58e4237f09a513d195b1 (patch)
treee3986003da3b261f3f0f96c24166fed016ff8b48 /FrontEnd/src/components/button/IconButton.tsx
parent97c3d6f302e236a273d64ddffc632f18ed967cbc (diff)
downloadtimeline-9c69024cf5961c3c71fb58e4237f09a513d195b1.tar.gz
timeline-9c69024cf5961c3c71fb58e4237f09a513d195b1.tar.bz2
timeline-9c69024cf5961c3c71fb58e4237f09a513d195b1.zip
Minor buttons
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
}