PanelEdit: Align chevron direction (#100386)

Adjusted the collapsable section chevron
+ point down when closed
+ point up when expanded
This commit is contained in:
Staton Hysell
2025-02-11 13:16:19 -05:00
committed by GitHub
parent ccb442558f
commit ab74852fc9
@@ -131,7 +131,7 @@ export const OptionsPaneCategory = React.memo(
variant="secondary"
aria-expanded={isExpanded}
className={styles.toggleButton}
icon={isExpanded ? 'angle-down' : 'angle-up'}
icon={isExpanded ? 'angle-up' : 'angle-down'}
onClick={onToggle}
/>
</div>