import * as React from 'react' import Image from 'next/image' import Button from '@hashicorp/react-button' import s from './style.module.css' interface IoUsecaseCustomerProps { media: { src: string width: string height: string alt: string } logo: { src: string width: string height: string alt: string } heading: string description: string stats?: Array<{ value: string key: string }> link: string } export default function IoUsecaseCustomer({ media, logo, heading, description, stats, link, }: IoUsecaseCustomerProps): React.ReactElement { return (
{/* eslint-disable-next-line jsx-a11y/alt-text */}
{/* eslint-disable-next-line jsx-a11y/alt-text */}
Customer case study

{heading}

{description}

{link ? (
) : null}
{stats.length > 0 ? ( ) : null}
) }