Skip to content

Commit 08bfd87

Browse files
committed
invert chevrons
1 parent a43b0d0 commit 08bfd87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/theme/Tabs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function TabList({ className, block, selectedValue, selectValue, tabValues }) {
9494
>
9595
<span className={clsx(styles.display, overflowing && styles.overflow)} onClick={(e) => handleOpen(e)}>
9696
<span>{selectedValue}</span>
97-
<Icon icon={`fa-regular fa-chevron-${open ? "down" : "up"}`} size="inherit" />
97+
<Icon icon={`fa-regular fa-chevron-${open ? "up" : "down"}`} size="inherit" />
9898
</span>
9999
<div ref={ulvalues} className={clsx(styles.ulContent, overflowing && styles.overflow, open && styles.open)}>
100100
{tabValues.map(({ value, label, attributes }) => (

0 commit comments

Comments
 (0)