diff options
author | crupest <crupest@outlook.com> | 2023-07-14 23:01:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-07-14 23:01:33 +0800 |
commit | c833176b638eeb1cdc8b30d4aef632a25ede3777 (patch) | |
tree | 3e67b72f7431734d7e8973faea90b56d8119c5ba /FrontEnd/src/views/common/button/IconButton.tsx | |
parent | 810185b8df1fd191cd4a5e7eb92e1986000880b1 (diff) | |
download | timeline-c833176b638eeb1cdc8b30d4aef632a25ede3777.tar.gz timeline-c833176b638eeb1cdc8b30d4aef632a25ede3777.tar.bz2 timeline-c833176b638eeb1cdc8b30d4aef632a25ede3777.zip |
...
Diffstat (limited to 'FrontEnd/src/views/common/button/IconButton.tsx')
-rw-r--r-- | FrontEnd/src/views/common/button/IconButton.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/views/common/button/IconButton.tsx b/FrontEnd/src/views/common/button/IconButton.tsx index 652a8b09..0ff9541a 100644 --- a/FrontEnd/src/views/common/button/IconButton.tsx +++ b/FrontEnd/src/views/common/button/IconButton.tsx @@ -1,13 +1,13 @@ import { ComponentPropsWithoutRef } from "react"; import classNames from "classnames"; -import { PaletteColorType } from "@/palette"; +import { ThemeColor } from "@/common"; import "./IconButton.css"; interface IconButtonProps extends ComponentPropsWithoutRef<"i"> { icon: string; - color?: PaletteColorType; + color?: ThemeColor; large?: boolean; } |