/** * External Dependencies */ import classnames from 'classnames'; import { isBlobURL } from '@wordpress/blob'; export default function GalleryImageSave( props ) { const { alt, imageFilter, height, id, link, linkTo, origUrl, url, width } = props; if ( isBlobURL( origUrl ) ) { return null; } let href; switch ( linkTo ) { case 'media': href = url; break; case 'attachment': href = link; break; } const img = ( { ); return (
{ href ? { img } : img }
); }