@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 625 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="M13 14H11C7.54202 14 4.53953 15.9502 3.03239 18.8107C3.01093 18.5433 3 18.2729 3 18C3 12.4772 7.47715 8 13 8V3L23 11L13 19V14Z"/>
</Svg>);
};
Icon.displayName = 'ShareForwardFill';
/**
* Remix Icon: Share Forward Fill
* @see {@link https://remixicon.com/icon/share-forward-fill Remix Icon Docs}
*/
export const ShareForwardFill = memo(Icon);