UNPKG

strapi-plugin-comments

Version:
9 lines (8 loc) 260 B
import { FC } from 'react'; import { Author } from '../../api/schemas'; type Props = Readonly<Pick<Author, 'avatar'> & { readonly name?: string | null; readonly isAdminComment: boolean | null; }>; export declare const UserAvatar: FC<Props>; export {};