UNPKG

material-ui

Version:

Material Design UI components built with React

17 lines (12 loc) 287 B
import React from 'react'; import SvgIcon from '../svg-icon'; let NavigationArrowDropRight = React.createClass({ render() { return ( <SvgIcon {...this.props}> <path d="M9.5,7l5,5l-5,5V7z"/> </SvgIcon> ); } }); export default NavigationArrowDropRight;