import { ComponentProps } from 'react'; import Box from '../Box'; import Flex from '../Flex'; import Image from '../Image'; import { ImageThumbnail } from '../sharedSubcomponents/thumbnailSubcomponents'; import Text from '../Text'; type Props = { graphicSrc: string; text: string; textColor: ComponentProps['color']; }; export default function ThumbnailButton({ graphicSrc, text, textColor }: Props) { return ( } /> {text} ); }