ArrowRightIcon.tsx 370 B

123456789
  1. import React from 'react';
  2. const ArrowRightIcon: React.FC<{className?: string}> = ({ className }) => (
  3. <svg xmlns="http://www.w3.org/2000/svg" className={className || "h-6 w-6"} fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth="3">
  4. <path strokeLinecap="round" strokeLinejoin="round" d="M9 5l7 7-7 7" />
  5. </svg>
  6. );
  7. export default ArrowRightIcon;