8 lines
496 B
JavaScript
8 lines
496 B
JavaScript
|
import React from 'react';
|
||
|
import createSvgIcon from './utils/createSvgIcon';
|
||
|
export default createSvgIcon(React.createElement(React.Fragment, null, React.createElement("path", {
|
||
|
fill: "none",
|
||
|
d: "M0 0h24v24H0zm10 5h4v2h-4zm0 0h4v2h-4z"
|
||
|
}), React.createElement("path", {
|
||
|
d: "M10 16v-1H3.01L3 19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2 2v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-6 0h-4V5h4v2z"
|
||
|
})), 'BusinessCenter');
|