import { AspectRatio } from '../AspectRatio' import { Anchor } from '../Text/Anchor' import { Copy } from '../Text/Copy' import { Heading } from '../Text/Heading' import { externalLinkIcon, quoteAnchor, quoteCard, quoteImage, quoteeHandle, quoteeName, } from './CardCarouselQuote.css' export interface Quote { text: string name: string img: string handle: string tweetUrl: string job: string } export const CardCarouselQuote = ({ name, img, tweetUrl, handle, text, job, }: Quote) => { return (
{name} {handle}
{job}
{text}
) }