react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 358 B
JavaScript
import * as React from 'react';
export function SvgElementor(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5 5v22h22V5H5zm2 2h18v18H7V7zm4 4v10h2V11h-2zm4 0v2h6v-2h-6zm0 4v2h6v-2h-6zm0 4v2h6v-2h-6z" })));
}
export default SvgElementor;