UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

17 lines 636 B
import { SxProps, TooltipProps } from '@mui/material'; export type HelpPopoverProps = { markdownText: string; helpUrl?: string; placement?: TooltipProps['placement']; showCloseButton?: boolean; className?: string; containerSx?: SxProps; iconSx?: SxProps; Icon?: React.ComponentType<{ className?: string; sx?: SxProps; }>; }; export declare function HelpPopover({ markdownText, helpUrl, placement, showCloseButton, className, iconSx, containerSx, Icon, }: HelpPopoverProps): import("react/jsx-runtime").JSX.Element; export default HelpPopover; //# sourceMappingURL=HelpPopover.d.ts.map