import { useIntl } from "react-intl" import { IconButton } from "../IconButton" import { Tooltip } from "../Tooltip" import { Typography } from "../Typography" import styles from "./stepper.module.css" type StepperProps = { count: number label: string ariaLabelledBy: string handleOnIncrease: () => void handleOnDecrease: () => void disableIncrease: boolean disableDecrease: boolean disabledMessage?: string } export function Stepper({ count, label, ariaLabelledBy, handleOnIncrease, handleOnDecrease, disableIncrease, disableDecrease, disabledMessage, }: StepperProps) { const intl = useIntl() return (
{count}
) }