react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 310 B
JavaScript
import * as React from 'react';
export function SvgCopy(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M4 4v20h7v-2H6V6h12v1h2V4zm8 4v20h16V8zm2 2h12v16H14z" })));
}
export default SvgCopy;