react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 605 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgAncientGateFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M18.901 10a2.999 2.999 0 004.075 1.113 3.5 3.5 0 01-1.975 3.55L21 21h-6v-2a3 3 0 00-5.995-.176L9 19v2H3v-6.336a3.5 3.5 0 01-1.979-3.553A2.999 2.999 0 005.098 10h13.803zm-1.865-7a3.5 3.5 0 004.446 2.86 3.5 3.5 0 01-3.29 3.135L18 9H6a3.5 3.5 0 01-3.482-3.14A3.5 3.5 0 006.964 3h10.072z" />
</Svg>
);
}
export default SvgAncientGateFill;