react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 471 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgArrowUpDownLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m11.95 7.95-1.414 1.414L8 6.828 8 20H6V6.828L3.466 9.364 2.05 7.95 7 3zm10 8.1L17 21l-4.95-4.95 1.414-1.414 2.537 2.536L16 4h2v13.172l2.536-2.536z" />
</Svg>
);
export default SvgArrowUpDownLine;