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) • 436 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSortNumberDesc = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M9 11V3H7.314L5 3.62v2.329l2-.539V11zm13-3-4-5-4 5h3v13h2V8zM8 16.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2m2.573.544a3 3 0 1 0-3.121 1.406L5.979 21h2.31z" />
</Svg>
);
export default SvgSortNumberDesc;