react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 837 B
JSX
import React, { Component } from 'react';
export default class CellphoneBasicIcon 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-basic-icon ${this.props.className}`}><path d="M15 2c-.554 0-1 .446-1 1v3h-4c-1.108 0-2 .892-2 2v12c0 1.108.892 2 2 2h5c1.108 0 2-.892 2-2V8a1.99 1.99 0 0 0-1-1.725V3c0-.554-.446-1-1-1zm-5 6h5v5h-5V8zm0 7h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v1h-1v-1zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v1h-1v-1zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v1h-1v-1z"/></svg>
)
}
}