synapsecns/sanguine

View on GitHub
packages/explorer-ui/components/icons/SwapIcon.tsx

Summary

Maintainability
A
0 mins
Test Coverage
export const SwapIcon = ({ className, ...props }) => {
  return (
    <svg
      className={`w-6 text-gray-800 cursor-pointer ${className ?? ''}`}
      fill="none"
      viewBox="0 0 24 24"
      stroke="currentColor"
      {...props}
    >
      <path
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth={2}
        d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4"
      />
    </svg>
  )
}