TwitchClone / src / utils / icons / verified / index.tsx
index.tsx
Raw
import React from "react";

const VerifiedIcon = () => {
  return (
    <svg width="18" height="18" viewBox="0 0 20 20" fill="currentColor">
      <path
        fill-rule="evenodd"
        d="m10 2 6 2 2 6-2 6-6 2-6-2-2-6 2-6 6-2zM8.889 13.636l5.43-5.429-1.415-1.414-4.015 4.015-2.015-2.015-1.414 1.414 3.429 3.43z"
        clip-rule="evenodd"
      ></path>
    </svg>
  );
};

export default VerifiedIcon;