export const Congested = ({ congested }: { congested: boolean }) => { if (!congested) { return null; } return (
Solana is congested, your transaction might fail to send or confirm
); };