react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 748 B
JSX
import React, { Component } from 'react';
export default class HouzzBoxIcon 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-houzz-box-icon ${this.props.className}`}><path d="M12 3.99l-4.59 2.7V12L12 9.3V3.99zm0 5.31v10.71l4.59-2.7V6.6L12 9.3zm0 5.4L7.41 12v5.4L12 14.7zM4.98 3h14.04C20.1 3 21 3.9 21 4.98v14.04c0 1.08-.9 1.98-1.98 1.98H4.98C3.9 21 3 20.1 3 19.02V4.98C3 3.9 3.9 3 4.98 3z"/></svg>
)
}
}