react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 425 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBuilding2Fill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M12 19h2V6l6.394 2.74a1 1 0 01.606.92V19h2v2H1v-2h2V5.65a1 1 0 01.594-.914l7.703-3.424A.5.5 0 0112 1.77V19z" />
</Svg>
);
}
export default SvgBuilding2Fill;