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 (