react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 691 B
JSX
import React, { Component } from 'react';
export default class CellphoneSettingsIcon 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-cellphone-settings-icon ${this.props.className}`}><path d="M16 16H8V4h8m0-3.99L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM15 24h2v-2h-2m-4 2h2v-2h-2m-4 2h2v-2H7v2z"/></svg>
)
}
}