react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 459 B
JavaScript
import * as React from 'react';
export function SvgPalletSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M6.125 5L6 5.844l-2 14V27h6v-2h12v2h6v-7.156l-2-14L25.875 5zm1.75 2h2.063l-.876 12H6.156zm4.063 0H15v12h-3.938zM17 7h3.063l.875 12H17zm5.063 0h2.062l1.719 12h-2.907zM6 21h20v4h-2v-2H8v2H6z" })));
}
export default SvgPalletSolid;