react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 368 B
JavaScript
import * as React from 'react';
export function SvgRulerHorizontalSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M0 8v16h32V8zm2 2h3v7h2v-7h2v4h2v-4h2v7h2v-7h2v4h2v-4h2v7h2v-7h2v4h2v-4h3v12H2z" })));
}
export default SvgRulerHorizontalSolid;