"use client"; import { FC } from "react"; // import { cn } from "@/helpers/common.helper"; type TCountChip = { count: string | number; className?: string; }; export const CountChip: FC = (props) => { const { count, className = "" } = props; return (
{count}
); };