react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 467 B
JavaScript
import * as React from 'react';
export function SvgGripHorizontalSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M2 7v8h8V7H2zm10 0v8h8V7h-8zm10 0v8h8V7h-8zM4 9h4v4H4V9zm10 0h4v4h-4V9zm10 0h4v4h-4V9zM2 17v8h8v-8H2zm10 0v8h8v-8h-8zm10 0v8h8v-8h-8zM4 19h4v4H4v-4zm10 0h4v4h-4v-4zm10 0h4v4h-4v-4z" })));
}
export default SvgGripHorizontalSolid;