import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs></defs>
  <path d="M855.664 399.6v4.504h-310.24V46.88c174.712 22.504 310.24 171.928 310.24 352.72zM508.272 974.96c-191.888 0-347.936-156.44-347.936-348.512V478.952h696v147.496c-0.128 192.2-156.176 348.504-348.064 348.504z" fill="#C9C9C9"></path>
  <path d="M470.576 46.88v357.224h-310.24v-4.504c0-180.792 135.528-330.216 310.24-352.72z" fill="#FF9021"></path>
</svg>

  );
}