123456789101112131415161718 |
- import {forwardRef} from 'react';
- import type {SVGIconProps} from './svgIcon';
- import {SvgIcon} from './svgIcon';
- const IconCommit = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
- return (
- <SvgIcon {...props} ref={ref}>
- <path d="M8,11.91A3.91,3.91,0,1,1,11.91,8,3.91,3.91,0,0,1,8,11.91ZM8,5.59A2.41,2.41,0,1,0,10.41,8,2.41,2.41,0,0,0,8,5.59Z" />
- <path d="M15.23,8.75H11.16a.75.75,0,0,1,0-1.5h4.07a.75.75,0,0,1,0,1.5Z" />
- <path d="M4.84,8.75H.77a.75.75,0,1,1,0-1.5H4.84a.75.75,0,0,1,0,1.5Z" />
- </SvgIcon>
- );
- });
- IconCommit.displayName = 'IconCommit';
- export {IconCommit};
|