import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M440.216 968c-26.88 0-54-20.448-54-66.112V511.52l-293.2-324.2c-8.632-9.544-14.688-19.408-18-29.304-4.376-13.072-3.984-26.08 1.12-37.616 5.12-11.536 14.48-20.56 27.088-26.088 9.552-4.192 20.912-6.312 33.776-6.312h750c12.864 0 24.224 2.12 33.776 6.32 12.608 5.52 21.968 14.544 27.08 26.08 5.112 11.536 5.504 24.544 1.128 37.616-3.312 9.896-9.36 19.76-18 29.304l-293.2 324.208v234.856c0 44.4-25.8 99.136-60.024 127.336l-91.56 75.456C471.04 961.664 455.576 968 440.216 968z"></path></svg>
  );
}