synapsecns/sanguine

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

Summary

Maintainability
A
3 hrs
Test Coverage
export const ArrowIcon = ({ className }) => {
  return (
    <svg
      className={`w-6 ${className}`}
      fill="none"
      viewBox="0 0 24 24"
      stroke="currentColor"
    >
      <path
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth={2}
        d="M14 5l7 7m0 0l-7 7m7-7H3"
      />
    </svg>
  )
}