react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 379 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgSortDesc(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M20 4v12h3l-4 5-4-5h3V4h2zm-8 14v2H3v-2h9zm2-7v2H3v-2h11zm0-7v2H3V4h11z" />
</Svg>
);
}
export default SvgSortDesc;