import React from 'react';
import PropTypes from 'prop-types';
import styles from './mic-indicator.css';
import micIcon from './mic-indicator.svg';
import {stageSizeToTransform} from '../../lib/screen-utils';
const MicIndicatorComponent = props => (
);
MicIndicatorComponent.propTypes = {
className: PropTypes.string,
stageSize: PropTypes.shape({
width: PropTypes.number,
height: PropTypes.number,
widthDefault: PropTypes.number,
heightDefault: PropTypes.number
}).isRequired
};
export default MicIndicatorComponent;