@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 518 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M20 4v12h3l-4 5-4-5h3V4zm-8 14v2H3v-2zm2-7v2H3v-2zm0-7v2H3V4z"/>
</Svg>);
});
Icon.displayName = 'SortDesc';
/**
* Remix Icon: Sort Desc
* @see {@link https://remixicon.com/icon/sort-desc Remix Icon Docs}
*/
export const SortDesc = Icon;