import Decimal from 'decimal.js' import { LinkButton } from './Button' import FormatNumericValue from './FormatNumericValue' const MaxAmountButton = ({ className, decimals, disabled, label, onClick, value, }: { className?: string decimals: number disabled?: boolean label: string onClick: () => void value: number | string | Decimal }) => { return (

{label}:

) } export default MaxAmountButton