UNPKG

@ysmood/material-ui

Version:

Material Design UI components built with React

17 lines (12 loc) 294 B
var React = require('react'); var SvgIcon = require('../svg-icon'); var DropDownArrow = React.createClass({ render: function() { return ( <SvgIcon {...this.props}> <polygon points="7,9.5 12,14.5 17,9.5 "/> </SvgIcon> ); } }); module.exports = DropDownArrow;