"use client" import Body from "@scandic-hotels/design-system/Body" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton" import styles from "./counter.module.css" import type { CounterProps } from "@/types/components/bookingWidget/guestsRoomsPicker" export default function Counter({ count, handleOnIncrease, handleOnDecrease, disableIncrease, disableDecrease, }: CounterProps) { return (
{count}
) }