import { useT } from 'contexts'; import QuoteButtons from './QuoteButtons'; /** * Author information component (legacy style) */ export default function AuthorInfoLegacy({ author, authorlink, onCopy, onFavourite, onShare, isFavourited, }) { const t = useT(); return ( <>

{authorlink ? ( {author} ) : ( {author} )}

); }