UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 465 B
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" width={24} height={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;