@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 651 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 22.0003L11.0002 22.0004L11.0002 5.82845L7.05044 9.77817L5.63623 8.36396L12.0002 2L18.3642 8.36396L16.9499 9.77817L13.0002 5.8284L13.0001 22.0003Z"/>
</Svg>);
};
Icon.displayName = 'ArrowUpLongLine';
/**
* Remix Icon: Arrow Up Long Line
* @see {@link https://remixicon.com/icon/arrow-up-long-line Remix Icon Docs}
*/
export const ArrowUpLongLine = memo(Icon);