import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Hint/hint'; import { css } from '@patternfly/react-styles'; export interface HintProps { /** Content rendered inside the hint. */ children?: React.ReactNode; /** Additional classes applied to the hint. */ className?: string; /** Actions of the hint. */ actions?: React.ReactNode; } export const Hint: React.FunctionComponent = ({ children, className, actions, ...props }: HintProps) => (
{actions}
{children}
); Hint.displayName = 'Hint';