@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 778 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="M3.99969 19.0001 3.99983 10.0002 9.58588 10.0002V4.58588L16.0001 11.0001 9.58588 17.4143V12.0002L5.9998 12.0002 5.99969 19.0001 3.99969 19.0001ZM13.8363 6.05023 15.2505 4.63601 21.6145 11 15.2505 17.3639 13.8363 15.9497 18.7861 11 13.8363 6.05023Z"/>
</Svg>);
};
Icon.displayName = 'CornerUpRightDoubleFill';
/**
* Remix Icon: Corner Up Right Double Fill
* @see {@link https://remixicon.com/icon/corner-up-right-double-fill Remix Icon Docs}
*/
export const CornerUpRightDoubleFill = memo(Icon);