@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
12 lines (11 loc) • 486 B
TypeScript
import { type TypographyProperties } from '../typography';
export type InputMessageProperties = TypographyProperties;
/**
* Message shown beneath input components to provide context or guidance.
* @docs {@link https://design.visa.com/components/input/?code_library=react | See Docs}
*/
declare const InputMessage: {
({ className, tag, ...remainingProps }: InputMessageProperties): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default InputMessage;