Make glyph optional
Summary: Make it optional to display the icon (glyph) with a default of true. Not used in this diff, but it will in future diffs. Reviewed By: ivanmisuno Differential Revision: D43186605 fbshipit-source-id: b525e126bcc46604e0abc0f83b6ff33a7ce78962
This commit is contained in:
committed by
Facebook GitHub Bot
parent
5fc0bcb631
commit
ada748170f
@@ -14,16 +14,22 @@ import {theme} from 'flipper-plugin';
|
||||
|
||||
type NoDataProps = {
|
||||
message: string;
|
||||
displayIcon?: boolean;
|
||||
};
|
||||
export const NoData: React.FC<NoDataProps> = ({message}) => {
|
||||
export const NoData: React.FC<NoDataProps> = ({
|
||||
message,
|
||||
displayIcon = true,
|
||||
}) => {
|
||||
return (
|
||||
<div style={{textAlign: 'center'}}>
|
||||
{displayIcon && (
|
||||
<Glyph
|
||||
name="stop"
|
||||
size={24}
|
||||
style={{margin: 20}}
|
||||
color={theme.primaryColor}
|
||||
/>
|
||||
)}
|
||||
<p>{message}</p>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user