import * as System from "~/components/system"; import * as Styles from "~/common/styles"; import * as Constants from "~/common/constants"; import { LoaderSpinner } from "~/components/system/components/Loaders"; import { css } from "@emotion/react"; import LinkTag from "~/components/core/Link/LinkTag"; const STYLES_IMAGE_CONTAINER = css` width: 100%; max-height: 40%; overflow: hidden; margin-bottom: 16px; display: flex; align-items: center; `; export default function LinkLoading({ file }) { const url = file.url; const { link } = file.data; const { image, name } = link; return (
{name}
); }