import React, { ReactElement } from 'react' import * as styles from './Title.module.css' import Icon from '../../atoms/Icon' import PostDate from '../../molecules/PostDate' export default function PostTitle({ linkurl, title, date, updated, className }: { linkurl?: string title: string date?: string updated?: string className?: string }): ReactElement { const linkHostname = linkurl ? new URL(linkurl).hostname : null return linkurl ? ( <>

{title}

{linkHostname}
) : ( <>

{title}

{date && } ) }