@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 605 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 7.82843V20H11.0001V7.82843L5.63614 13.1924L4.22192 11.7782L12.0001 4L19.7783 11.7782L18.3641 13.1924L13.0001 7.82843Z"/>
</Svg>);
};
Icon.displayName = 'ArrowUpLine';
/**
* Remix Icon: Arrow Up Line
* @see {@link https://remixicon.com/icon/arrow-up-line Remix Icon Docs}
*/
export const ArrowUpLine = memo(Icon);