import cx from "classnames"; import React from "react"; const CLASS_ROOT = "hint"; export interface HintProps extends React.HTMLAttributes { className?: string; children?: React.ReactNode; } const Hint: React.FC = ({ className, children, ...other }) => { return children ? (

{children}

) : null; }; Hint.displayName = "Hint"; export { Hint };