@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 775 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="M20.0003 19.0001 20.0002 10.0002 14.4142 10.0002V4.58588L7.99995 11.0001 14.4142 17.4143V12.0002L18.0002 12.0002 18.0003 19.0001 20.0003 19.0001ZM10.1637 6.05023 8.74952 4.63601 2.38556 11 8.74952 17.3639 10.1637 15.9497 5.21399 11 10.1637 6.05023Z"/>
</Svg>);
};
Icon.displayName = 'CornerUpLeftDoubleFill';
/**
* Remix Icon: Corner Up Left Double Fill
* @see {@link https://remixicon.com/icon/corner-up-left-double-fill Remix Icon Docs}
*/
export const CornerUpLeftDoubleFill = memo(Icon);