import * as React from 'react'; import progressStyle from '@patternfly/react-styles/css/components/Progress/progress'; export interface ProgressHelperTextProps extends React.HTMLProps { /** Content which can be used to convey additional information about the progress component. * We recommend the helper text component as it was designed for this purpose. */ children?: React.ReactNode; } export const ProgressHelperText: React.FunctionComponent = ({ children, ...props }: ProgressHelperTextProps) => (
{children}
); ProgressHelperText.displayName = 'ProgressHelperText';