/* * Copyright (c) 2023 Nordic Semiconductor ASA * * SPDX-License-Identifier: LicenseRef-Nordic-4-Clause */ import React from 'react'; import ExternalLink from '../Link/ExternalLink'; import logger from '../logging/index'; const ErrorContent = () => (

Contact support on{' '} {' '} and provide the{' '} {' '} if the problem persists.

); const NoticeBox = ({ mdiIcon, color, title, content, }: { mdiIcon: string; color: string; title: string; content: React.ReactNode; }) => (
{title} {content}
); export const IssueBox = ({ mdiIcon, color, title, }: { mdiIcon: string; color: string; title: string; }) => ( } /> ); export const InfoBox = ({ mdiIcon, color, title, content, }: { mdiIcon: string; color: string; title: string; content: string; }) => ( {content}

} /> ); export default NoticeBox;