CheckmarkIcon.tsx 657 B

123456789101112131415161718192021222324252627282930
  1. import React, { FC } from 'react';
  2. const CheckmarkIcon: FC = () => {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. viewBox="0 0 64 64"
  7. width="12"
  8. height="12"
  9. aria-labelledby="title"
  10. aria-describedby="desc"
  11. role="img"
  12. >
  13. <title>Checkmark</title>
  14. <desc>A line styled icon from Orion Icon Library.</desc>
  15. <path
  16. data-name="layer1"
  17. fill="none"
  18. stroke="#FFFFFF"
  19. strokeMiterlimit="10"
  20. strokeWidth="2"
  21. d="M2 30l21 22 39-40"
  22. strokeLinejoin="round"
  23. strokeLinecap="round"
  24. />
  25. </svg>
  26. );
  27. };
  28. export default CheckmarkIcon;