import { Icon, postList } from '@wordpress/icons'; import { useTranslate } from 'i18n-calypso'; import EmptyContent from 'calypso/components/empty-content'; import { UserData } from 'calypso/lib/user/user'; import Stream from 'calypso/reader/stream'; interface UserPostsProps { user: UserData; } const UserPosts = ( { user }: UserPostsProps ): JSX.Element => { const translate = useTranslate(); return ( {} } emptyContent={ () => ( } title={ null } line={ translate( 'No posts yet.' ) } /> ) } /> ); }; export default UserPosts;