react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 369 B
JavaScript
import * as React from 'react';
export function SvgRulerVerticalSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M8 0v32h16V0H8zm2 2h12v3h-7v2h7v2h-4v2h4v2h-7v2h7v2h-4v2h4v2h-7v2h7v2h-4v2h4v3H10V2z" })));
}
export default SvgRulerVerticalSolid;