mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-11 02:16:23 +00:00
Update color prop in OverFlowIcon component
This commit is contained in:
parent
4bf59cd1d8
commit
1c6aaa198c
2 changed files with 3 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
const OverFlowIcon = ({ width = 24, height = 24, color = "currentColor", className, ...rest }) => (
|
||||
const OverFlowIcon = ({ width = 24, height = 24, color = "var(--interactive-normal)", className, ...rest }) => (
|
||||
<svg
|
||||
{...rest}
|
||||
width={width}
|
||||
|
|
|
@ -124,8 +124,7 @@ export function NoteBookTabs({ tabs, selectedTabId, onSelectTab }: { tabs: strin
|
|||
);
|
||||
}
|
||||
return null;
|
||||
}).filter(isNotNullish)
|
||||
}
|
||||
}).filter(isNotNullish)}
|
||||
{overflowedTabs.length > 0 && (
|
||||
<Popout
|
||||
shouldShow={show}
|
||||
|
@ -145,9 +144,7 @@ export function NoteBookTabs({ tabs, selectedTabId, onSelectTab }: { tabs: strin
|
|||
>
|
||||
<SvgOverFlowIcon className={classes(overflowIcon)} width={16} height={16}/>
|
||||
</Button>
|
||||
)
|
||||
}
|
||||
|
||||
)}
|
||||
</Popout>
|
||||
|
||||
)}
|
||||
|
|
Loading…
Reference in a new issue