@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 640 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const GitForkFill = /* @__PURE__ */ memo(function GitForkFill(_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 6a3 3 0 0 1-2 2.83V9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-.17a3.001 3.001 0 1 1 2 0V9a4 4 0 0 1-4 4h-2v2.17a3.001 3.001 0 1 1-2 0V13H9a4 4 0 0 1-4-4v-.17A3.001 3.001 0 1 1 9 6"/>
</Svg>);
});
/**
* Remix Icon: Git Fork Fill
* @see {@link https://remixicon.com/icon/git-fork-fill Remix Icon Docs}
*/
export { GitForkFill };