react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 651 B
JSX
import React, { Component } from 'react';
export default class SleepIcon 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-sleep-icon ${this.props.className}`}><path d="M23 12h-6v-2l3.39-4H17V4h6v2l-3.381 4H23v2zm-8 4H9v-2l3.39-4H9V8h6v2l-3.381 4H15v2zm-8 4H1v-2l3.39-4H1v-2h6v2l-3.381 4H7v2z"/></svg>
)
}
}