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