@atlaskit/onboarding
Version:
An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
15 lines (14 loc) • 672 B
TypeScript
import { type SpotlightCardProps } from '../types';
/**
* __Spotlight card__
*
* A spotlight card is for onboarding messages that need a more flexible layout, or don't require a dialog.
*
* - [Examples](https://atlassian.design/components/onboarding/spotlight-card/examples)
* - [Code](https://atlassian.design/components/onboarding/spotlight-card/code)
* - [Usage](https://atlassian.design/components/onboarding/spotlight-card/usage)
*
* @deprecated Use `@atlaskit/spotlight` instead.
*/
declare const SpotlightCard: React.ForwardRefExoticComponent<React.PropsWithoutRef<SpotlightCardProps> & React.RefAttributes<HTMLDivElement>>;
export default SpotlightCard;