import React from 'react'; import './ImageBubble.scss'; interface ImageBubbleProps { title: string; href?: string; } export default function ImageBubble({ title, href }: ImageBubbleProps) { return ( {title ); }