UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 826 B
import React, { Component } from 'react'; export default class SelectIcon 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-select-icon ${this.props.className}`}><path d="M4 3h1v2H3V4a1 1 0 0 1 1-1zm16 0a1 1 0 0 1 1 1v1h-2V3h1zm-5 2V3h2v2h-2zm-4 0V3h2v2h-2zM7 5V3h2v2H7zm14 15a1 1 0 0 1-1 1h-1v-2h2v1zm-6 1v-2h2v2h-2zm-4 0v-2h2v2h-2zm-4 0v-2h2v2H7zm-3 0a1 1 0 0 1-1-1v-1h2v2H4zm-1-6h2v2H3v-2zm18 0v2h-2v-2h2zM3 11h2v2H3v-2zm18 0v2h-2v-2h2zM3 7h2v2H3V7zm18 0v2h-2V7h2z"/></svg> ) } }