UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 740 B
import React, { Component } from 'react'; export default class AttachmentIcon 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-attachment-icon ${this.props.className}`}><path d="M7.5 18C4.46 18 2 15.54 2 12.5S4.46 7 7.5 7H18c2.21 0 4 1.79 4 4s-1.79 4-4 4H9.5a2.5 2.5 0 0 1 0-5H17v1.5H9.5c-.55 0-1 .45-1 1s.45 1 1 1H18a2.5 2.5 0 0 0 0-5H7.5c-2.21 0-4 1.79-4 4s1.79 4 4 4H17V18H7.5z"/></svg> ) } }