Skip to content
Snippets Groups Projects

Invert icons in CollapsableCard

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -72,7 +72,7 @@ export function CollapsableCard({
className="btn btn-outline-secondary border-0 ms-1"
onClick={() => setVisible((old) => !old)}
>
<i className={"bi bi-chevron-" + (visible ? "down" : "up")} />
<i className={"bi bi-chevron-" + (visible ? "up" : "down")} />
</button>
</>
}
Loading