react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 486 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgChinaRailwayFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11 19v-6l-2-1V9h6v3l-2 1v6l5 1v2H6v-2zM10 2.223V1h4v1.223a9.003 9.003 0 0 1 2.993 16.266l-1.11-1.664a7 7 0 1 0-7.767 0l-1.109 1.664A9.003 9.003 0 0 1 10 2.223" />
</Svg>
);
export default SvgChinaRailwayFill;