/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React, {type ReactNode} from 'react'; import clsx from 'clsx'; import {useBlogPost} from '@docusaurus/plugin-content-blog/client'; import BlogAuthor from '@theme/Blog/Components/Author'; import type {Props} from '@theme/BlogPostItem/Header/Authors'; import styles from './styles.module.css'; // Component responsible for the authors layout export default function BlogPostItemHeaderAuthors({ className, }: Props): ReactNode { const { metadata: {authors}, assets, } = useBlogPost(); const authorsCount = authors.length; if (authorsCount === 0) { return null; } const imageOnly = authors.every(({name}) => !name); const singleAuthor = authors.length === 1; return (