import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 832c-9.52 0.008-18.664-3.312-25.392-9.216l-220.64-193.48c-13.504-12.384-13.256-31.96 0.56-44.08 13.816-12.112 36.136-12.32 50.256-0.48L512 755.944l195.216-171.2c14.12-11.84 36.44-11.624 50.256 0.488 13.816 12.12 14.064 31.696 0.56 44.08l-220.632 193.472c-6.728 5.912-15.872 9.224-25.4 9.216zM512 192c-9.52-0.008-18.664 3.312-25.392 9.216l-220.64 193.48c-13.504 12.384-13.256 31.96 0.56 44.08 13.816 12.112 36.136 12.32 50.256 0.48L512 268.056l195.216 171.2c14.12 11.84 36.44 11.624 50.256-0.488 13.816-12.12 14.064-31.696 0.56-44.08L537.4 201.224C530.672 195.304 521.528 191.992 512 192z"></path></svg>
  );
}