@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 661 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="M7 8.83a3.001 3.001 0 1 0-2 0v6.34a3.001 3.001 0 1 0 2 0zM21 18a3 3 0 1 1-6 0 3 3 0 0 1 6 0M18 7.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m1.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/>
</Svg>);
});
Icon.displayName = 'GitPrDraftFill';
/**
* Remix Icon: Git Pr Draft Fill
* @see {@link https://remixicon.com/icon/git-pr-draft-fill Remix Icon Docs}
*/
export const GitPrDraftFill = Icon;