/* * Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors. * SPDX-License-Identifier: GPL-2.0-or-later */ import { Tooltip } from "./Tooltip"; interface DocsTooltipProps { label?: React.ReactNode; children?: React.ReactNode; } export const DocsTooltip = ({ label, children }: DocsTooltipProps) => ( {label ?? null} } > {children} );