20 lines
354 B
Plaintext
20 lines
354 B
Plaintext
// @flow
|
|
|
|
import React from 'react';
|
|
import pure from 'recompose/pure';
|
|
import SvgIcon from '../SvgIcon';
|
|
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
let ArrowDropDown = props => (
|
|
<SvgIcon {...props}>
|
|
<path d="M7 10l5 5 5-5z" />
|
|
</SvgIcon>
|
|
);
|
|
|
|
ArrowDropDown = pure(ArrowDropDown);
|
|
ArrowDropDown.muiName = 'SvgIcon';
|
|
|
|
export default ArrowDropDown;
|