@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 420 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgExpandUpDownLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M18.207 9.043 12 2.836 5.793 9.043l1.414 1.414L12 5.664l4.793 4.793 1.414-1.414ZM5.793 14.957 12 21.165l6.207-6.208-1.414-1.414L12 18.336l-4.793-4.793-1.414 1.414Z" />
</Svg>
);
export default SvgExpandUpDownLine;