import styled from '@emotion/styled'; import Card from 'sentry/components/card'; import ExternalLink from 'sentry/components/links/externalLink'; import {space} from 'sentry/styles/space'; type Props = { imgUrl: string; link: string; title: string; }; function ResourceCard({title, link, imgUrl}: Props) { return ( {title} ); } export default ResourceCard; const StyledLink = styled(ExternalLink)` padding: ${space(3)}; flex: 1; `; const StyledImg = styled('img')` display: block; margin: 0 auto ${space(3)} auto; height: 160px; `; const StyledTitle = styled('div')` color: ${p => p.theme.textColor}; font-size: ${p => p.theme.fontSizeLarge}; text-align: center; font-weight: bold; `;