@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
25 lines (22 loc) • 615 B
JavaScript
import { createMemoStyles } from '../../theme/create-memo-styles.js';
var useStyles = createMemoStyles({
root: {
display: "flex"
},
breadcrumb: {
lineHeight: 1,
whiteSpace: "nowrap",
WebkitTapHighlightColor: "transparent"
},
separator: ({ theme }) => ({
marginLeft: theme.spacing.xs,
marginRight: theme.spacing.xs,
color: theme.colorScheme === "dark" ? theme.colors.dark[2] : theme.colors.gray[7],
lineHeight: 1,
display: "flex",
alignItems: "center",
justifyContent: "center"
})
});
export default useStyles;
//# sourceMappingURL=Breadcrumbs.styles.js.map