import { LinkButton } from './Button' const MaxAmountButton = ({ className, disabled, label, onClick, value, }: { className?: string disabled?: boolean label: string onClick: () => void value: string }) => { return ( {label}: {value} ) } export default MaxAmountButton