UNPKG

create-broadcast-app

Version:

Create a NextGen TV broadcast app with one command

42 lines (36 loc) 883 B
/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /* @flow */ import React, { useContext } from 'react'; import { ThemeContext } from '../iframeScript'; import type { Theme } from '../styles'; const closeButtonStyle = (theme: Theme) => ({ color: theme.closeColor, lineHeight: '1rem', fontSize: '1.5rem', padding: '1rem', cursor: 'pointer', position: 'absolute', right: 0, top: 0, }); type CloseButtonPropsType = {| close: () => void, |}; function CloseButton({ close }: CloseButtonPropsType) { const theme = useContext(ThemeContext); return ( <span title="Click or press Escape to dismiss." onClick={close} style={closeButtonStyle(theme)} > × </span> ); } export default CloseButton;