import { Step, Token } from '@lifi/sdk' import { Col, Input, Row } from 'antd' import { formatTokenAmount } from '../../../services/utils' interface ToSectionKlimaStakingProps { step?: Step tokenPolygonSKLIMA?: Token routesLoading: boolean } export const ToSectionKlimaStaking = ({ step, tokenPolygonSKLIMA, routesLoading, }: ToSectionKlimaStakingProps) => { const amount = step?.estimate?.toAmountMin || '0' const formattedAmount = tokenPolygonSKLIMA ? formatTokenAmount(tokenPolygonSKLIMA, amount) : '0' return (
To:
) }