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 SvgBoxesSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M10 4v11h12V4H10zm2 2h2v4l2-2 2 2V6h2v7h-8V6zM3 17v11h12V17H3zm14 0v11h12V17H17zM5 19h2v4l2-2 2 2v-4h2v7H5v-7zm14 0h2v4l2-2 2 2v-4h2v7h-8v-7z" })));
}
export default SvgBoxesSolid;