"use client" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import styles from "./counter.module.css" import { IconButton } from "@scandic-hotels/design-system/IconButton" import { Typography } from "@scandic-hotels/design-system/Typography" type CounterProps = { count: number handleOnIncrease: () => void handleOnDecrease: () => void disableIncrease: boolean disableDecrease: boolean } export default function Counter({ count, handleOnIncrease, handleOnDecrease, disableIncrease, disableDecrease, }: CounterProps) { return (
{count}