chore(note_map): improve the icon for expanding/collapsing the map

This commit is contained in:
SiriusXT 2025-12-05 11:21:44 +08:00
parent eec6f7336c
commit 85b4f652f4

View File

@ -29,14 +29,14 @@ export default function NoteMapTab({ note }: TabContext) {
{!isExpanded ? (
<ActionButton
icon="bx bx-arrow-to-bottom"
icon="bx bx-expand-vertical"
text={t("note_map.open_full")}
className="open-full-button"
onClick={() => setExpanded(true)}
/>
) : (
<ActionButton
icon="bx bx-arrow-to-top"
icon="bx bx-collapse-vertical"
text={t("note_map.collapse")}
className="collapse-button"
onClick={() => setExpanded(false)}