react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 490 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDirectionFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M9 10a1 1 0 0 0-1 1v4h2v-3h3v2.5l3.5-3.5L13 7.5V10zm3.707-8.607 9.9 9.9a1 1 0 0 1 0 1.414l-9.9 9.9a1 1 0 0 1-1.414 0l-9.9-9.9a1 1 0 0 1 0-1.414l9.9-9.9a1 1 0 0 1 1.414 0" />
</Svg>
);
export default SvgDirectionFill;