react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 405 B
JavaScript
import * as React from 'react';
export function SvgShekelSignSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M7 5v22h2V7h1c3.879 0 7 3.121 7 7v7h2v-7c0-4.957-4.043-9-9-9zm15 0v20h-1c-3.879 0-7-3.121-7-7v-7h-2v7c0 4.957 4.043 9 9 9h3V5z" })));
}
export default SvgShekelSignSolid;