import { Primitive } from "@seed-design/react-primitive"; import clsx from "clsx"; import { forwardRef } from "react"; export interface CountProps extends React.HTMLAttributes {} export const Count = forwardRef((props, ref) => { const { className, ...otherProps } = props; return ; });