@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 312 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSortDesc = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M20 4v12h3l-4 5-4-5h3V4h2Zm-8 14v2H3v-2h9Zm2-7v2H3v-2h11Zm0-7v2H3V4h11Z" />
</Svg>
);
export default SvgSortDesc;