@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 313 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSortAsc = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m19 3 4 5h-3v12h-2V8h-3l4-5Zm-5 15v2H3v-2h11Zm0-7v2H3v-2h11Zm-2-7v2H3V4h9Z" />
</Svg>
);
export default SvgSortAsc;