@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 662 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M15.874 13C15.4299 14.7252 13.8638 16 12 16C10.1362 16 8.57006 14.7252 8.12602 13H3V11H8.12602C8.57006 9.27477 10.1362 8 12 8C13.8638 8 15.4299 9.27477 15.874 11H21V13H15.874Z"/>
</Svg>);
};
Icon.displayName = 'GitCommitFill';
/**
* Remix Icon: Git Commit Fill
* @see {@link https://remixicon.com/icon/git-commit-fill Remix Icon Docs}
*/
export const GitCommitFill = memo(Icon);