import { CloseIcon } from '@blocksuite/icons/rc'; import type { ReactNode } from 'react'; import { browserWarningStyle, closeButtonStyle, closeIconStyle, } from './index.css'; export const BrowserWarning = ({ show, onClose, message, }: { show: boolean; onClose: () => void; message: ReactNode; }) => { if (!show) { return null; } return (
{message}
); }; export default BrowserWarning;