react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 503 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSortNumberAsc = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M9 3v8H7V5.41l-2 .539v-2.33L7.313 3zm10 0v13h3l-4 5-4-5h3V3zm-8 12.5c0 .564-.156 1.093-.427 1.544L8.289 21h-2.31l1.473-2.55A3.001 3.001 0 1 1 11 15.5m-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2" />
</Svg>
);
export default SvgSortNumberAsc;