react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 481 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAncientPavilionFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M1.516 7.877A4.5 4.5 0 0 0 5 11.887v7.114H3v2h18v-2h-2v-7.114a4.5 4.5 0 0 0 3.484-4.01A9 9 0 0 1 12.514 2h-1.029a9 9 0 0 1-9.97 5.877M17 19H7V12h10z" />
</Svg>
);
export default SvgAncientPavilionFill;