/** @jsxRuntime classic */ /** @jsx jsx */ import { AspectRatio, get, jsx, Skeleton } from "@front10/base-elements"; import { SingleCardProps } from "../CardProps"; import { imagePlaceholder } from "../_commons/atoms/placeholder"; interface Props { mediaShown: "video" | "gif" | "image"; imageSrc?: string; animationSrc?: string; videoSrc?: string; alt: string; imageCover: SingleCardProps["imageCover"]; round?: boolean; isLoading?: boolean; } export function TiktokImage(props: Props) { return ( {props.mediaShown === "video" ? ( ); }