import { IconButton } from '../IconButton' import { MaterialIcon } from '../Icons/MaterialIcon' import { Tooltip } from '../Tooltip' import { Typography } from '../Typography' import styles from './stepper.module.css' type StepperProps = { count: number handleOnIncrease: () => void handleOnDecrease: () => void disableIncrease: boolean disableDecrease: boolean disabledMessage?: string } export default function Stepper({ count, handleOnIncrease, handleOnDecrease, disableIncrease, disableDecrease, disabledMessage, }: StepperProps) { return (

{count}

) }