@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 855 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="M3 6a3 3 0 1 1 4 2.83v6.34a3.001 3.001 0 1 1-2 0V8.83A3 3 0 0 1 3 6m12.293-2.707a1 1 0 0 1 1.414 0L18 4.586l1.293-1.293a1 1 0 1 1 1.414 1.414L19.414 6l1.293 1.293a1 1 0 0 1-1.414 1.414L18 7.414l-1.293 1.293a1 1 0 1 1-1.414-1.414L16.586 6l-1.293-1.293a1 1 0 0 1 0-1.414M18 10a1 1 0 0 1 1 1v4.17a3.001 3.001 0 1 1-2 0V11a1 1 0 0 1 1-1"/>
</Svg>);
});
Icon.displayName = 'GitClosePullRequestFill';
/**
* Remix Icon: Git Close Pull Request Fill
* @see {@link https://remixicon.com/icon/git-close-pull-request-fill Remix Icon Docs}
*/
export const GitClosePullRequestFill = Icon;