1
0
Fork 1
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:
Wolfie 2024-03-15 12:34:34 -04:00
parent 4bf59cd1d8
commit 1c6aaa198c
No known key found for this signature in database
GPG key ID: DE384EE9BF2D909A
2 changed files with 3 additions and 6 deletions

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: GPL-3.0-or-later * 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 <svg
{...rest} {...rest}
width={width} width={width}

View file

@ -124,8 +124,7 @@ export function NoteBookTabs({ tabs, selectedTabId, onSelectTab }: { tabs: strin
); );
} }
return null; return null;
}).filter(isNotNullish) }).filter(isNotNullish)}
}
{overflowedTabs.length > 0 && ( {overflowedTabs.length > 0 && (
<Popout <Popout
shouldShow={show} shouldShow={show}
@ -145,9 +144,7 @@ export function NoteBookTabs({ tabs, selectedTabId, onSelectTab }: { tabs: strin
> >
<SvgOverFlowIcon className={classes(overflowIcon)} width={16} height={16}/> <SvgOverFlowIcon className={classes(overflowIcon)} width={16} height={16}/>
</Button> </Button>
) )}
}
</Popout> </Popout>
)} )}