UNPKG

remix-icons-rn

Version:

React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.

14 lines (13 loc) 442 B
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" {...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;