import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 16 18">
    
    排序
    Created with Sketch.
    
        
            
                
                    
                        
                        <path d="M12.9394531,3.49658203 L16.1645117,6.50568359 C16.4405469,6.76324219 16.8731055,6.74826172 17.1306836,6.47220703 C17.3882422,6.19617187 17.3732617,5.76361328 17.097207,5.50603516 L12.722207,1.42400391 C12.2852148,1.01626953 11.5722656,1.32617188 11.5722656,1.92382812 L11.5722656,18.0273437 C11.5722656,18.4048828 11.8783203,18.7109375 12.2558594,18.7109375 C12.6333984,18.7109375 12.9394531,18.4048828 12.9394531,18.0273437 L12.9394531,3.49658203 Z M6.88476562,16.4434766 L3.65970703,13.434375 C3.38367187,13.1768164 2.95111328,13.1917969 2.69353516,13.4678516 C2.43597656,13.7438867 2.45095703,14.1764453 2.72701172,14.4340039 L7.10201172,18.5160352 C7.53900391,18.9237695 8.25195312,18.6138867 8.25195312,18.0162305 L8.25195312,1.91269531 C8.25195312,1.53515625 7.94589844,1.22910156 7.56835937,1.22910156 C7.19082031,1.22910156 6.88476562,1.53515625 6.88476562,1.91269531 L6.88476562,16.443457 L6.88476562,16.4434766 Z"></path>
                    
                
            
        
    
</svg>
  );
}