react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 432 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgBuilding2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12 19h2V6l6.394 2.74a1 1 0 0 1 .606.92V19h2v2H1v-2h2V5.65a1 1 0 0 1 .594-.914l7.703-3.423a.5.5 0 0 1 .703.456z" />
</Svg>
);
export default SvgBuilding2Fill;