UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 659 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const GitBranchFill = /* @__PURE__ */ memo(function GitBranchFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M7.105 15.21A3.001 3.001 0 1 1 5 15.17V8.83a3.001 3.001 0 1 1 2 0V12c.836-.628 1.874-1 3-1h4a3 3 0 0 0 2.895-2.21 3.001 3.001 0 1 1 2.032.064A5 5 0 0 1 14 13h-4a3 3 0 0 0-2.895 2.21"/> </Svg>); }); /** * Remix Icon: Git Branch Fill * @see {@link https://remixicon.com/icon/git-branch-fill Remix Icon Docs} */ export { GitBranchFill };