UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 534 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdLocalDining extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m13.5 22.2l4.7-4.7-11.7-11.7c-2.6 2.6-2.6 6.9 0 9.5l7 6.9z m11.3-3c2.6 1.2 6.1 0.4 8.8-2.3 3.2-3.2 3.8-7.7 1.3-10.2-2.4-2.4-7-1.8-10.2 1.4-2.6 2.6-3.4 6.2-2.3 8.8l-16.2 16.2 2.3 2.4 11.5-11.5 11.5 11.5 2.3-2.4-11.4-11.4 2.4-2.5z"/></g> </IconBase> ); } }