react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 410 B
JavaScript
import * as React from 'react';
export function SvgToolboxSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M13 5c-1.094 0-2 .906-2 2v2H2v18h28V9h-9V7c0-1.094-.906-2-2-2zm0 2h6v2h-6zm-9 4h24v5h-4v-1h-4v1h-8v-1H8v1H4zm0 7h4v1h4v-1h8v1h4v-1h4v7H4z" })));
}
export default SvgToolboxSolid;