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 ? ( {!isExpanded ? (
<ActionButton <ActionButton
icon="bx bx-arrow-to-bottom" icon="bx bx-expand-vertical"
text={t("note_map.open_full")} text={t("note_map.open_full")}
className="open-full-button" className="open-full-button"
onClick={() => setExpanded(true)} onClick={() => setExpanded(true)}
/> />
) : ( ) : (
<ActionButton <ActionButton
icon="bx bx-arrow-to-top" icon="bx bx-collapse-vertical"
text={t("note_map.collapse")} text={t("note_map.collapse")}
className="collapse-button" className="collapse-button"
onClick={() => setExpanded(false)} onClick={() => setExpanded(false)}