@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 701 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="M10.0002 5.00011L19.0001 4.99997L19.0001 6.99997L12.0002 7.00008L12.0001 17.1719L15.9498 13.2222L17.3641 14.6364L11.0001 21.0004L4.63614 14.6364L6.05035 13.2222L10.0001 17.172L10.0002 5.00011Z"/>
</Svg>);
};
Icon.displayName = 'CornerLeftDownLine';
/**
* Remix Icon: Corner Left Down Line
* @see {@link https://remixicon.com/icon/corner-left-down-line Remix Icon Docs}
*/
export const CornerLeftDownLine = memo(Icon);