import React from 'react'; import { ButtonProps, PopoverProps } from '@bigbinary/neetoui'; interface HelpPopoverProps { title?: string; description?: React.ReactNode; helpLinkProps?: ButtonProps; popoverProps?: PopoverProps; size?: "default" | "large"; className?: string; icon?: React.ReactNode; iconColor?: string; } /** * * Can be used to show contextual help information within a popover when a user * * hovers on the help icon. This component can be used to provide guidance, * * instructions, or additional context without cluttering the main interface. We * * can also direct the user to a separate page for more information. * *  * * @example * * import HelpPopover from "@bigbinary/neeto-molecules/HelpPopover"; * const App = () => { * return ( *