UNPKG

mirador

Version:

An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.

18 lines (16 loc) 381 B
import { withStyles } from '@material-ui/core/styles'; import { SanitizedHtml } from '../components/SanitizedHtml'; /** * Styles for withStyles HOC */ var styles = function styles(theme) { return { root: { '& a': { color: theme.palette.primary.main, textDecoration: 'underline' } } }; }; export default withStyles(styles)(SanitizedHtml);