import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 2285 1024"><defs></defs><path d="M1749.333333 0c67.047619 0 121.904762 54.857143 121.904762 121.904762s-54.857143 121.904762-121.904762 121.904762-121.904762-54.857143-121.904762-121.904762 54.857143-121.904762 121.904762-121.904762zM926.640762 566.034286l-205.921524-235.257905c0-14.70781-20.589714-14.70781-41.185524-29.409524-61.775238-14.70781-123.550476-14.70781-144.14019 29.409524L0 918.930286V1024c41.185524 0 803.090286-0.713143 2285.714286-2.139429v-58.819047c0-9.801143-157.866667-171.544381-473.618286-485.229714-20.589714-29.409524-82.364952-29.409524-123.550476-14.701715l-20.589714 14.701715-41.185524 29.409523-288.286476 323.486477c-41.185524 29.409524-80.975238 71.722667-164.736-14.701715l-247.107048-249.965714z"></path></svg>
  );
}