iconic-icons-rn
Version:
Iconic icons for React Native
11 lines (10 loc) • 852 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgBuilding(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M5.75 6.75a2 2 0 012-2h8.5a2 2 0 012 2v12.5H5.75V6.75zM19.25 19.25H4.75" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.75 15.75a2 2 0 012-2h.5a2 2 0 012 2v3.5h-4.5v-3.5z" }),
React.createElement(Circle, { cx: 10, cy: 10, r: 1, fill: "currentColor" }),
React.createElement(Circle, { cx: 14, cy: 10, r: 1, fill: "currentColor" })));
}
export default SvgBuilding;