react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 735 B
JSX
import React, { Component } from 'react';
export default class DatabaseIcon 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-database-icon ${this.props.className}`}><path d="M12 3C7.582 3 4 4.79 4 7s3.582 4 8 4 8-1.79 8-4-3.582-4-8-4zM4 9v3c0 2.21 3.582 4 8 4s8-1.79 8-4V9c0 2.21-3.582 4-8 4s-8-1.79-8-4zm0 5v3c0 2.21 3.582 4 8 4s8-1.79 8-4v-3c0 2.21-3.582 4-8 4s-8-1.79-8-4z"/></svg>
)
}
}