UNPKG

material-ui

Version:

Material Design UI components built with React

16 lines (12 loc) 441 B
let React = require('react'); let SvgIcon = require('../../svg-icon'); let EditorBorderColor = React.createClass({ render() { return ( <SvgIcon {...this.props}> <path d="M17.75 7L14 3.25l-10 10V17h3.75l10-10zm2.96-2.96c.39-.39.39-1.02 0-1.41L18.37.29c-.39-.39-1.02-.39-1.41 0L15 2.25 18.75 6l1.96-1.96z"/><path fill-opacity=".36" d="M0 20h24v4H0z"/> </SvgIcon> ); } }); module.exports = EditorBorderColor;