diff options
author | crupest <crupest@outlook.com> | 2023-08-31 23:56:13 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-08-31 23:56:13 +0800 |
commit | 6664fb3506b1ea4af712fa849bd7c761a06c9843 (patch) | |
tree | 1a15efb73c5608d336587390aadea9a9a210cc25 /FrontEnd/src/pages/timeline/CollapseButton.tsx | |
parent | a1f69d978426c6a4cb7e8f3116e087553dbbffd5 (diff) | |
download | timeline-6664fb3506b1ea4af712fa849bd7c761a06c9843.tar.gz timeline-6664fb3506b1ea4af712fa849bd7c761a06c9843.tar.bz2 timeline-6664fb3506b1ea4af712fa849bd7c761a06c9843.zip |
...
Diffstat (limited to 'FrontEnd/src/pages/timeline/CollapseButton.tsx')
-rw-r--r-- | FrontEnd/src/pages/timeline/CollapseButton.tsx | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/FrontEnd/src/pages/timeline/CollapseButton.tsx b/FrontEnd/src/pages/timeline/CollapseButton.tsx deleted file mode 100644 index 1c4fa2ba..00000000 --- a/FrontEnd/src/pages/timeline/CollapseButton.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import { CSSProperties } from "react"; - -import IconButton from "~src/components/button/IconButton"; - -export default function CollapseButton({ - collapse, - onClick, - className, - style, -}: { - collapse: boolean; - onClick: () => void; - className?: string; - style?: CSSProperties; -}) { - return ( - <IconButton - color="primary" - icon={collapse ? "arrows-angle-expand" : "arrows-angle-contract"} - onClick={onClick} - className={className} - style={style} - /> - ); -} |