import clsx from 'clsx'; import Image from 'next/image'; import Price from 'components/price'; export function GridTileImage({ isInteractive = true, background, active, labels, ...props }: { isInteractive?: boolean; background?: 'white' | 'pink' | 'purple' | 'black' | 'purple-dark' | 'blue' | 'cyan' | 'gray'; active?: boolean; labels?: { title: string; amount: string; currencyCode: string; isSmall?: boolean; }; } & React.ComponentProps) { return (
{active !== undefined && active ? ( ) : null} {props.src ? ( {props.title ) : null} {labels ? (

{labels.title}

) : null}
); }