success.tsx 934 B

1234567891011121314151617181920212223242526272829303132
  1. interface Props {
  2. className?: string;
  3. style?: React.CSSProperties;
  4. }
  5. export const IconSuccessFill = ({ className, style }: Props) => (
  6. <svg
  7. className={className}
  8. style={style}
  9. xmlns="http://www.w3.org/2000/svg"
  10. width="20"
  11. height="20"
  12. fill="none"
  13. viewBox="0 0 20 20"
  14. >
  15. <g clipPath="url(#icon-workflow-run-success_svg__a)">
  16. <path
  17. fill="#3EC254"
  18. d="M.833 10A9.166 9.166 0 0 0 10 19.168a9.166 9.166 0 0 0 9.167-9.166A9.166 9.166 0 0 0 10 .834a9.166 9.166 0 0 0-9.167 9.167"
  19. ></path>
  20. <path
  21. fill="#fff"
  22. d="M6.077 9.755a.833.833 0 0 0 0 1.179l2.357 2.357a.833.833 0 0 0 1.179 0l4.714-4.714a.833.833 0 1 0-1.178-1.179l-4.125 4.125-1.768-1.768a.833.833 0 0 0-1.179 0"
  23. ></path>
  24. </g>
  25. <defs>
  26. <clipPath id="icon-workflow-run-success_svg__a">
  27. <path fill="#fff" d="M0 0h20v20H0z"></path>
  28. </clipPath>
  29. </defs>
  30. </svg>
  31. );