VerifiedIcon.tsx 459 B

123456789
  1. import React from 'react';
  2. const VerifiedIcon: React.FC<{ className?: string }> = ({ className = 'h-5 w-5' }) => (
  3. <svg xmlns="http://www.w3.org/2000/svg" className={className} viewBox="0 0 20 20" fill="currentColor">
  4. <path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
  5. </svg>
  6. );
  7. export default VerifiedIcon;