/** * WordPress dependencies */ import { Dashicon } from '@safe-wordpress/components'; /** * Internal dependencies */ import { Tooltip } from '../tooltip'; import type { TooltipProps } from '../tooltip'; export type HelpIconProps = { readonly className?: string; readonly type?: 'info' | 'editor-help'; readonly text?: string; readonly tooltipPlacement?: TooltipProps[ 'placement' ]; }; export const HelpIcon = ( { type, text, className, tooltipPlacement = 'bottom', }: HelpIconProps ): JSX.Element => ( );