synapsecns/sanguine

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

Summary

Maintainability
A
3 hrs
Test Coverage
export const StakeIcon = ({ className }) => {
  return (
    <svg
      className={`h-6 w-6 ${className}`}
      fill="none"
      viewBox="0 0 24 24"
      stroke="currentColor"
      aria-hidden="true"
    >
      <path
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth={2}
        d="M13 10V3L4 14h7v7l9-11h-7z"
      />
    </svg>
  )
}