aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/timeline-common/CollapseButton.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/CollapseButton.tsx')
-rw-r--r--FrontEnd/src/app/views/timeline-common/CollapseButton.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/CollapseButton.tsx b/FrontEnd/src/app/views/timeline-common/CollapseButton.tsx
index da54f3fd..12a3b710 100644
--- a/FrontEnd/src/app/views/timeline-common/CollapseButton.tsx
+++ b/FrontEnd/src/app/views/timeline-common/CollapseButton.tsx
@@ -1,5 +1,5 @@
import React from "react";
-import clsx from "clsx";
+import classnames from "classnames";
const CollapseButton: React.FC<{
collapse: boolean;
@@ -10,7 +10,7 @@ const CollapseButton: React.FC<{
return (
<i
onClick={onClick}
- className={clsx(
+ className={classnames(
collapse ? "bi-arrows-angle-expand" : "bi-arrows-angle-contract",
"text-primary icon-button",
className