react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 638 B
JavaScript
import * as React from 'react';
export function SvgBimobject(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5 5v22h22V5H5zm2 2h18v18H7V7zm3 3v10.813h2.984v-1.62h.043C13.402 20.3 14.25 21 16.305 21h.793c4.3 0 4.832-1.546 4.832-3.852v-1.627c0-2.307-.533-3.841-4.844-3.841h-.805c-1.398 0-3.037.385-3.246 1.804h-.05V10H10zm5.05 4.238h2.235c1.628-.01 1.785.553 1.785 1.565v1.064c0 1.012-.157 1.576-1.785 1.576h-2.234c-1.346 0-2.057-.304-2.057-1.66v-.887c0-1.367.71-1.658 2.057-1.658z" })));
}
export default SvgBimobject;