react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 418 B
JavaScript
import * as React from 'react';
export function SvgArchwaySolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M3 6v6h2v12H3v2h10v-7c0-1.654 1.346-3 3-3s3 1.346 3 3v7h10v-2h-2V12h2V6H3zm2 2h22v2H5V8zm2 4h18v12h-4v-5c0-2.757-2.243-5-5-5s-5 2.243-5 5v5H7V12z" })));
}
export default SvgArchwaySolid;