material-ui-cordova
Version:
React components that implement Google's Material Design.
20 lines (15 loc) • 354 B
Flow
// @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;