@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 668 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M9 3v2H4v14h16v-9h2v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm9.95 2L16 2.05 17.414.636l5.34 5.34A.6.6 0 0 1 22.33 7H14a2 2 0 0 0-2 2v6h-2V9a4 4 0 0 1 4-4z"/>
</Svg>);
});
Icon.displayName = 'ShareForwardBoxLine';
/**
* Remix Icon: Share Forward Box Line
* @see {@link https://remixicon.com/icon/share-forward-box-line Remix Icon Docs}
*/
export const ShareForwardBoxLine = Icon;