packages/explorer-ui/components/icons/StakeIcon.tsx
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>
)
}