UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 652 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const ChinaRailwayFill = /* @__PURE__ */ memo(function ChinaRailwayFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...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>); }); /** * Remix Icon: China Railway Fill * @see {@link https://remixicon.com/icon/china-railway-fill Remix Icon Docs} */ export { ChinaRailwayFill };