react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 747 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaPlusSquareO extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1408 1896.0833" {...this.props}>
<g><path d="m1152 800v64q0 14-9 23t-23 9h-352v352q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-352h-352q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-352q0-14 9-23t23-9h64q14 0 23 9t9 23v352h352q14 0 23 9t9 23z m128 448v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113z m128-832v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z"/></g>
</IconBase>
);
}
}