synapsecns/sanguine

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

Summary

Maintainability
A
3 hrs
Test Coverage
export const NarrowArrowIcon = ({ className }) => {
  return (
    <svg
      className={`w-6 ${className}`}
      fill="none"
      viewBox="0 0 24 24"
      stroke="currentColor"
    >
      <path
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth={2}
        d="M17 8l4 4m0 0l-4 4m4-4H3"
      />
    </svg>
  )
}