import clsx from 'clsx' import {Col} from '../layout/col' export const IncrementButton = (props: { amount: number onIncrement: () => void className?: string }) => { const {amount, onIncrement, className} = props return ( ) } export const IncrementDecrementButton = (props: { onIncrement: () => void onDecrement: () => void className?: string }) => { const {onIncrement, onDecrement, className} = props return ( ) } const buttonClasses = 'text-ink-400 flex h-[35px] w-12 flex-row items-center justify-center active:bg-ink-100' export const IncrementDecrementAmountButton = (props: { amount: number incrementBy: (amount: number) => void }) => { const {amount, incrementBy} = props return ( ) }