diff options
Diffstat (limited to 'src/components/MetaItems/Author')
| -rw-r--r-- | src/components/MetaItems/Author/Author.tsx | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/src/components/MetaItems/Author/Author.tsx b/src/components/MetaItems/Author/Author.tsx new file mode 100644 index 0000000..c3d78c2 --- /dev/null +++ b/src/components/MetaItems/Author/Author.tsx @@ -0,0 +1,20 @@ +import { MetaKind } from '@ts/types/app'; +import { useIntl } from 'react-intl'; +import { MetaItem } from '..'; + +const Author = ({ name, kind }: { name: string; kind: MetaKind }) => { +  const intl = useIntl(); + +  return ( +    <MetaItem +      title={intl.formatMessage({ +        defaultMessage: 'Written by:', +        description: 'Author: article author meta label', +      })} +      value={name} +      kind={kind} +    /> +  ); +}; + +export default Author; | 
