Files
goTorrent/goTorrentWebUI/node_modules/material-ui/internal/svg-icons/ArrowDropDown.js.flow

18 lines
347 B
Plaintext

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;