react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 460 B
JavaScript
import * as React from 'react';
export function SvgInboxSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M7.156 5L7 5.844l-2 13V27h22v-8.156l-2-13L24.844 5zm1.719 2h14.25l1.688 11H18v1c0 1.117-.883 2-2 2s-2-.883-2-2v-1H7.187zM7 20h5.188c.453 1.71 1.964 3 3.812 3 1.848 0 3.36-1.29 3.813-3H25v5H7z" })));
}
export default SvgInboxSolid;