react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 402 B
JavaScript
import * as React from 'react';
export function SvgObjectGroup(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5 5v4h1v14H5v4h4v-1h14v1h4v-4h-1V9h1V5h-4v1H9V5zm4 3h14v1h1v14h-1v1H9v-1H8V9h1zm1 2v8h4v4h8v-8h-4v-4zm2 2h4v4h-4zm6 4h2v4h-4v-2h2z" })));
}
export default SvgObjectGroup;