import RichTextHeadingStrongStroked from '@graphcommerce/graphcms-ui/RichText/RichTextHeadingStrongStroked'
import { SpecialBanner } from '@graphcommerce/next-ui'
import { Link } from '@material-ui/core'
import PageLink from 'next/link'
import React from 'react'
import Asset from '../../Asset'
import { RowSpecialBannerFragment } from './RowSpecialBanner.gql'
type RowSpecialBannerProps = RowSpecialBannerFragment
export default function RowSpecialBanner(props: RowSpecialBannerProps) {
const { copy, asset, topic, pageLinks } = props
return (
}
pageLinks={pageLinks.map((pageLink) => (
{pageLink.title}
))}
>
)
}