UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 429 B
const React = require('react/addons'); const PureRenderMixin = React.addons.PureRenderMixin; const SvgIcon = require('../../svg-icon'); const HardwareKeyboardArrowLeft = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M15.41 16.09l-4.58-4.59 4.58-4.59L14 5.5l-6 6 6 6z"/> </SvgIcon> ); } }); module.exports = HardwareKeyboardArrowLeft;