synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
35 lines (34 loc) • 774 B
JavaScript
const t = {
defaultProps: {
underline: "always"
},
styleOverrides: {
root: ({ theme: e }) => ({
fontWeight: 700,
"&:hover": {
// overrides base style in bootstrap 3
color: e.palette.primary.main
}
}),
underlineAlways: ({ theme: e }) => ({
textDecoration: "underline",
textUnderlineOffset: "4px",
textDecorationThickness: "1px",
textDecorationColor: e.palette.grey[600],
"&:hover": {
textDecorationColor: e.palette.primary.main,
textDecorationThickness: "2px"
}
}),
underlineHover: {
"&:hover": {
textUnderlineOffset: "4px",
textDecorationThickness: "2px"
}
}
}
};
export {
t as default
};
//# sourceMappingURL=Link.js.map