@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 684 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 6V8H5V19H16V14H18V20C18 20.5523 17.5523 21 17 21H4C3.44772 21 3 20.5523 3 20V7C3 6.44772 3.44772 6 4 6H10ZM21 3V12L17.206 8.207L11.2071 14.2071L9.79289 12.7929L15.792 6.793L12 3H21Z"/>
</Svg>);
};
Icon.displayName = 'ExternalLinkFill';
/**
* Remix Icon: External Link Fill
* @see {@link https://remixicon.com/icon/external-link-fill Remix Icon Docs}
*/
export const ExternalLinkFill = memo(Icon);