mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-02 01:49:51 +08:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import MuiBreadcrumbs from '@mui/material/Breadcrumbs';
|
|
import { styled } from '../../styles';
|
|
|
|
export const Breadcrumbs = styled(MuiBreadcrumbs)(({ theme }) => {
|
|
return {
|
|
color: theme.colors.popoverColor,
|
|
};
|
|
});
|