17 lines
		
	
	
		
			369 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			369 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import React from 'react';
 | 
						|
import pure from 'recompose/pure';
 | 
						|
import SvgIcon from '../SvgIcon';
 | 
						|
 | 
						|
/**
 | 
						|
 * @ignore - internal component.
 | 
						|
 */
 | 
						|
let ArrowDropDown = props => React.createElement(
 | 
						|
  SvgIcon,
 | 
						|
  props,
 | 
						|
  React.createElement('path', { d: 'M7 10l5 5 5-5z' })
 | 
						|
);
 | 
						|
 | 
						|
ArrowDropDown = pure(ArrowDropDown);
 | 
						|
ArrowDropDown.muiName = 'SvgIcon';
 | 
						|
 | 
						|
export default ArrowDropDown; |