Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions ImageItem/ImageItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import PropTypes from 'prop-types';
import compose from 'ramda/src/compose';

import $L from '../internal/$L';
import {CheckboxBase} from '../Checkbox';
import Icon from '../Icon';
import Image from '../Image';
import AsyncRenderChildren from '../internal/AsyncRenderChildren';
Expand All @@ -33,9 +32,6 @@ import Skinnable from '../Skinnable';

import componentCss from './ImageItem.module.less';

const Checkbox = Skinnable(CheckboxBase);
Checkbox.displayName = 'Checkbox';

const
defaultPlaceholder =
'data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC' +
Expand Down Expand Up @@ -289,7 +285,7 @@ const ImageItemBase = kind({
if (SelectionComponent) {
return <SelectionComponent />;
} else {
return <Icon className={css.selectionIcon} >checkmark</Icon>;
return <Icon className={css.selectionIcon}>checkmark</Icon>;
}
}
},
Expand Down
Loading