@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 613 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M13.0001 16.1716L18.3641 10.8076L19.7783 12.2218L12.0001 20L4.22192 12.2218L5.63614 10.8076L11.0001 16.1716V4H13.0001V16.1716Z"/>
</Svg>);
};
Icon.displayName = 'ArrowDownLine';
/**
* Remix Icon: Arrow Down Line
* @see {@link https://remixicon.com/icon/arrow-down-line Remix Icon Docs}
*/
export const ArrowDownLine = memo(Icon);