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
|
* 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}
|
||||||
|
|
|
@ -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>
|
||||||
|
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue