iconCommit.tsx 616 B

123456789101112131415161718
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconCommit = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <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" />
  8. <path d="M15.23,8.75H11.16a.75.75,0,0,1,0-1.5h4.07a.75.75,0,0,1,0,1.5Z" />
  9. <path d="M4.84,8.75H.77a.75.75,0,1,1,0-1.5H4.84a.75.75,0,0,1,0,1.5Z" />
  10. </SvgIcon>
  11. );
  12. });
  13. IconCommit.displayName = 'IconCommit';
  14. export {IconCommit};