import {
type HTMLAttributes,
type ReactElement,
type ReactNode,
type Ref,
} from "react";
import { formMessageCounter } from "./formMessageStyles.js";
/** @since 2.9.0 */
export interface FormMessageCounterProps extends HTMLAttributes {
ref?: Ref;
/**
* The children to display in the counter. This is normally a string like:
*
* @example String Example
* ```ts
* `${min} / ${max}`
* ```
*/
children: ReactNode;
}
/**
* This component can be used to create a "counter" within the
* {@link FormMessage} component.
*
* Note: This is really only useful when using the {@link FormMessage} component
* without a {@link TextField}.
*
* @example Example Usage
* ```ts
* interface ExampleProps {
* min: number;
* max: number;
* }
*
* function Example({ min, max }: ExampleProps) {
* return (
*
*
* {`${min} / ${max}`}
*
*
* );
* }
* ```
*
* @see {@link https://react-md.dev/components/form-message | FormMessage Demos}
* @see {@link https://react-md.dev/components/text-field | TextField Demos}
* @since 2.9.0
* @since 6.3.0 Supports refs.
*/
export function FormMessageCounter(
props: FormMessageCounterProps
): ReactElement {
const { ref, children, className, ...remaining } = props;
return (
{children}
);
}