--- import DirectusImg from "./DirectusImg.astro" export interface Props { name: string image: string link?: string small?: boolean } const { name, image, link, small } = Astro.props ---
{ link ? ( {name} ) : ( {name} ) }