react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 600 B
JSX
import React, { Component } from 'react';
export default class HomeVariantIcon 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-home-variant-icon ${this.props.className}`}><path d="M8 19.998H5v-8H2l10-9 10 9h-3v8h-7v-6H8v6zM14 14v3h3v-3h-3z"/></svg>
)
}
}