/* * Copyright (c) 2015 Nordic Semiconductor ASA * * SPDX-License-Identifier: LicenseRef-Nordic-4-Clause */ import React, { type FC } from 'react'; import Button from '../Button/Button'; import { openUrl } from '../utils/open'; interface Props { onClick?: () => void; url?: string; label: string; } const AboutButton: FC = ({ url, label, onClick }) => ( ); export default AboutButton;