import ImagePlaceholderIcon from "../../fundamentals/icons/image-placeholder-icon" import clsx from "clsx" type Props = { src?: string | null className?: string size?: "xsmall" | "small" | "medium" | "large" } export const Thumbnail = ({ src, className, size = "small" }: Props) => { return (