99ab165a8f
Clearer display of takeover amounts Repost from empty search result, from top page, or from claim review changes final touches bump empty comment copy they emptier validation cleanup extra
32 lines
800 B
JavaScript
32 lines
800 B
JavaScript
// @flow
|
|
import classnames from 'classnames';
|
|
import React from 'react';
|
|
import Empty from 'component/common/empty';
|
|
|
|
type Props = {
|
|
isChannel: boolean,
|
|
type: string,
|
|
};
|
|
|
|
function ClaimPreviewNoContent(props: Props) {
|
|
const { isChannel, type } = props;
|
|
return (
|
|
<li
|
|
className={classnames('claim-preview__wrapper', {
|
|
'claim-preview__wrapper--channel': isChannel && type !== 'inline',
|
|
'claim-preview__wrapper--inline': type === 'inline',
|
|
})}
|
|
>
|
|
<div
|
|
className={classnames('claim-preview', {
|
|
'claim-preview--large': type === 'large',
|
|
'claim-preview__empty': true,
|
|
})}
|
|
>
|
|
<Empty text={__('Nothing found here. Like big tech ethics.')} />
|
|
</div>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
export default ClaimPreviewNoContent;
|