import { clsx } from 'clsx' import { Author } from '../../../graphql/types.gen' import { Userpic } from '../Userpic' import styles from './AhtorLink.module.scss' type Props = { author: Author size?: 'XS' | 'M' | 'L' class?: string } export const AuthorLink = (props: Props) => { return (
{props.author.name}
) }