@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
11 lines (10 loc) • 366 B
TypeScript
import { TooltipProps } from '../../components/Tooltip';
import { FieldProps } from '..';
interface FieldTooltipProps extends TooltipProps, Pick<FieldProps, "label"> {
id: string;
}
/**
* Info tooltip to be used within Field context.
*/
export declare const FieldTooltip: ({ label, id, ...props }: FieldTooltipProps) => import("react").JSX.Element;
export {};