react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 719 B
JSX
import React, { Component } from 'react';
export default class PrescriptionIcon 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-prescription-icon ${this.props.className}`}><path d="M4 4v10h2v-4h2l5.414 5.415L9.828 19l1.414 1.415 3.585-3.587 3.587 3.587 1.41-1.419-3.582-3.581 3.582-3.583-1.41-1.418L14.827 14l-4-4H11a3 3 0 1 0 0-6H4zm2 2h5a1 1 0 1 1 0 2H6V6z"/></svg>
)
}
}