@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
12 lines (11 loc) • 389 B
TypeScript
import React from "react";
import type { TextareaProps } from "./Textarea.js";
interface Props {
maxLengthId: string;
maxLength: number;
currentLength: number;
size: TextareaProps["size"];
i18n: TextareaProps["i18n"];
}
declare const TextareaCounter: ({ maxLengthId, maxLength, currentLength, size, i18n, }: Props) => React.JSX.Element;
export default TextareaCounter;