import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Form/form'; export interface FormHelperTextProps extends React.HTMLProps { /** Content rendered inside the helper text wrapper */ children?: React.ReactNode; /** Additional classes added to the helper text wrapper */ className?: string; } export const FormHelperText: React.FunctionComponent = ({ children = null, className = '', ...props }: FormHelperTextProps) => (
{children}
); FormHelperText.displayName = 'FormHelperText';