import * as React from "react"; import * as Constants from "~/common/constants"; import { css } from "@emotion/react"; const STYLES_IMAGE = css` display: block; max-width: 100%; max-height: 100%; pointer-events: none; `; const STYLES_ENTITY = css` height: 100%; width: 100%; border: 1px solid ${Constants.system.border}; background-color: ${Constants.system.foreground}; font-size: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: none; `; export default class SlateMediaObjectPreview extends React.Component { render() { let element =