import type { InheritanceData } from '@discordjs/api-extractor-utils'; import Link from 'next/link'; export function InheritanceText({ data }: { data: InheritanceData }) { return ( {'Inherited from '} {data.parentName} ); }