import * as React from 'react' import Image from 'next/image' import { IconExternalLink16 } from '@hashicorp/flight-icons/svg-react/external-link-16' import { IconArrowRight16 } from '@hashicorp/flight-icons/svg-react/arrow-right-16' import s from './style.module.css' interface IoHomeCaseStudiesProps { isInternalLink: (link: string) => boolean heading: string description: string primary: Array<{ thumbnail: { url: string alt: string } link: string heading: string }> secondary: Array<{ link: string heading: string }> } export default function IoHomeCaseStudies({ isInternalLink, heading, description, primary, secondary, }: IoHomeCaseStudiesProps): React.ReactElement { return (

{heading}

{description}

) }