react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 423 B
JavaScript
import * as React from 'react';
export function SvgFolderPlusSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M6 3v26h20V15.437l1.719-1.718.281-.313V3H6zm2 2h14v8.406l.281.313L24 15.438V27H8V5zm16 0h2v7.563l-1 1-1-1V5zm-9 7v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" })));
}
export default SvgFolderPlusSolid;