@atlaskit/spotlight
Version:
A spotlight introduces users to points of interest, from focused messages to multi-step tours.
19 lines (18 loc) • 492 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type ReactNode } from 'react';
interface PopoverTargetProps {
/**
* The content to be rendered in `PopoverTarget`. This is intended to be the element you want to point the spotlight at.
*/
children: ReactNode;
}
/**
* __Target__
*
* A target is the element that the popover content will be positioned in relation to.
*/
export declare const PopoverTarget: ({ children }: PopoverTargetProps) => JSX.Element;
export {};