@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 614 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="m13.576 17.271-5.11-2.787a3.5 3.5 0 1 1 0-4.968l5.11-2.787a3.5 3.5 0 1 1 .958 1.755l-5.11 2.787a3.5 3.5 0 0 1 0 1.457l5.11 2.788a3.5 3.5 0 1 1-.958 1.755"/>
</Svg>);
});
Icon.displayName = 'ShareFill';
/**
* Remix Icon: Share Fill
* @see {@link https://remixicon.com/icon/share-fill Remix Icon Docs}
*/
export const ShareFill = Icon;