react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 674 B
JSX
import React, { Component } from 'react';
export default class CastleIcon 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-castle-icon ${this.props.className}`}><path d="M2 13h2v2h2v-2h2v2h2v-2h2v2h2v-5l3-3V1h2l4 2-4 2v2l3 3v12H11v-3a2 2 0 1 0-4 0v3H2v-9zm16-3c-.552 0-1 .537-1 1.2V13h2v-1.8c0-.663-.448-1.2-1-1.2z"/></svg>
)
}
}