/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import { EuiEmptyPrompt, EuiPanel, EuiText, EuiIcon } from "@elastic/eui"; import React from "react"; interface PreviewEmptyPromptProps { isReadOnly: boolean; } export default function PreviewEmptyPrompt({ isReadOnly }: PreviewEmptyPromptProps) { return ( {isReadOnly ? (

No preview available

} /> ) : (

No fields selected

} body={

{" "} From the table above, select a field you want to transform by clicking next to the field name.

} /> )}
); }