import styled from '@emotion/styled'; import QuestionTooltip from 'sentry/components/questionTooltip'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import ExternalLink from './links/externalLink'; type TooltipProps = Omit, 'size'>; interface PageHeadingQuestionTooltipProps extends TooltipProps { /** * The link to the documentation for this page. */ docsUrl: string; } export function PageHeadingQuestionTooltip({ docsUrl, title, ...props }: PageHeadingQuestionTooltipProps) { const contents = ( {title} {t('Read the Docs')} ); return ( ); } const Container = styled('div')` display: inline-flex; flex-direction: column; align-items: flex-start; text-align: left; gap: ${space(1)}; `;