react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 513 B
JavaScript
import * as React from 'react';
export function SvgBoxSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M8.5 5l-.313.406L5 9.656V27h22V9.656l-3.188-4.25L23.5 5zm1 2H15v2H8zM17 7h5.5L24 9h-7zM7 11h18v14H7zm5.813 2c-.551.05-.958.543-.907 1.094.051.55.543.957 1.094.906h6c.36.004.695-.184.879-.496a1.01 1.01 0 000-1.008c-.184-.312-.52-.5-.879-.496H12.812z" })));
}
export default SvgBoxSolid;