CheckSign.tsx 482 B

1234567891011121314151617181920
  1. import clsx from "clsx";
  2. export default function CheckSign(props: React.ComponentProps<"svg">) {
  3. return (
  4. <svg
  5. className={clsx("h-4 w-4", props.className)}
  6. fill="none"
  7. stroke="#008000"
  8. strokeWidth={1.5}
  9. viewBox="0 0 24 24"
  10. xmlns="http://www.w3.org/2000/svg"
  11. >
  12. <path
  13. d="M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
  14. strokeLinecap="round"
  15. strokeLinejoin="round"
  16. />
  17. </svg>
  18. );
  19. }