UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 792 B
import React, { Component } from 'react'; export default class DictionaryIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-dictionary-icon ${this.props.className}`}><path d="M5.813 2C4.829 2.093 3.995 3.013 4 4v16c0 1.047.953 2 2 2h12c1.047 0 2-.953 2-2V4a2 2 0 0 0-2-2h-6v7L9.5 7.5 7 9V2H6a2.022 2.022 0 0 0-.188 0zM12 13h1c.554 0 1 .446 1 1v4h-1v-2h-1v2h-1v-4c0-.554.446-1 1-1zm0 1v1h1v-1h-1zm3 1h3v1l-2 3h2v1h-3v-1l2-3h-2v-1z"/></svg> ) } }