@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
29 lines (24 loc) • 713 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var createMemoStyles = require('../../theme/create-memo-styles.js');
var useStyles = createMemoStyles.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"
})
});
exports.default = useStyles;
//# sourceMappingURL=Breadcrumbs.styles.js.map