react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 331 B
JavaScript
import * as React from 'react';
export function SvgCropAltSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M8 4v4H4v2h4v14h14v4h2v-4h4v-2H10V4H8zm4 4v2h10v10h2V8H12z" })));
}
export default SvgCropAltSolid;