UNPKG

media-stream-player

Version:

Player built on top of media-stream-library

13 lines 436 B
import React from 'react'; import styled from 'styled-components'; import { Spinner } from './img'; const FeedbackArea = styled.div ` width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; `; export const Feedback = ({ waiting = false }) => (React.createElement(FeedbackArea, null, waiting && React.createElement(Spinner, null))); //# sourceMappingURL=Feedback.js.map