import { Gridicon } from '@automattic/components'; import { FunctionComponent } from 'react'; interface Props { icon?: string; thumbnail?: string; fullImage?: string; name: string; } const ActivityMedia: FunctionComponent< Props > = ( { icon, thumbnail, fullImage, name } ) => (
{ icon && } { thumbnail && ( { ) } { fullImage && ( { ) }
); export default ActivityMedia;