import * as React from 'react';

const DefaultStyles = {
  width: '1em',
  height: '1em',
  verticalAlign: 'middle',
  fill: 'currentColor',
  overflow: 'hidden'
};

export default function Video(props = {}) {
  const styles = Object.assign({}, DefaultStyles, props.style);

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M832 32c88.368 0 160 71.632 160 160v640c0 88.368-71.632 160-160 160H192c-88.368 0-160-71.632-160-160V192C32 103.632 103.632 32 192 32h640z m0 72H192c-47.832 0-86.744 38.16-87.968 85.696L104 192v640c0 47.832 38.16 86.744 85.696 87.968L192 920h640c47.832 0 86.744-38.16 87.968-85.696L920 832V192c0-47.832-38.16-86.744-85.696-87.968L832 104z"></path>
  <path d="M408.952 711.16l275.4-185.896a16 16 0 0 0 0-26.528L408.96 312.84A16 16 0 0 0 384 326.104v371.792a16 16 0 0 0 24.952 13.264z"></path>
</svg>

  );
}