UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

15 lines (14 loc) 458 B
/** * HelperText module. * @module @massds/mayflower-react/HelperText * @requires module:@massds/mayflower-assets/scss/01-atoms/helper-text */ import React from 'react'; export interface HelperTextProps { /** The ID of the corresponding input field */ inputId: string; /** The help text for the corresponding input field */ message: React.ReactNode; } declare const HelperText: (props: HelperTextProps) => any; export default HelperText;