import * as React from "react"; import styled from "styled-components"; import { s } from "@shared/styles"; import Flex from "~/components/Flex"; import { Preview, Title, Description, Card, CardContent, CARD_WIDTH, THUMBNAIL_HEIGHT, } from "./Components"; type Props = { /** Link url */ url: string; /** Title for the preview card */ title: string; /** Url for thumbnail served by the link provider */ thumbnailUrl: string; /** Some description about the link provider */ description: string; }; function HoverPreviewLink({ url, thumbnailUrl, title, description }: Props) { return ( {thumbnailUrl ? : null} {title} {description} ); } const Thumbnail = styled.img` object-fit: cover; max-width: ${CARD_WIDTH}px; height: ${THUMBNAIL_HEIGHT}px; background: ${s("menuBackground")}; `; export default HoverPreviewLink;