iconCommit.tsx 646 B

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