"use client"; import { minecrafter } from "@/font/fonts"; import { cn } from "@/lib/utils"; import CountUp from "react-countup"; /** * Props for the counter. */ type CounterProps = { /** * The name of the counter. */ name: string; /** * The amount to count up to. */ amount: number; /** * The optional duration of the count up. *

* Uses the default duration if not provided. *

*/ duration?: number | undefined; }; /** * A counter component. * * @param amount the amount to count up to * @param duration the optional duration of the count up * @returns the counter jsx */ const Counter = ({ name, amount, duration }: CounterProps): JSX.Element => (

{name}

); export default Counter;