@atlaskit/onboarding
Version:
An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
34 lines (33 loc) • 724 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type ImgHTMLAttributes, type ReactNode } from 'react';
/**
* __Dialog image__
*
* An optional header image in spotlight dialogs.
*
* @internal
*/
export declare const DialogImage: ({ alt, ...props }: ImgHTMLAttributes<HTMLImageElement>) => JSX.Element;
/**
* __Dialog action item container__
*
* Flex wrapper around dialog action items.
*
* @internal
*/
export declare const DialogActionItemContainer: ({ children }: {
children: ReactNode;
}) => JSX.Element;
/**
* __Dialog action item__
*
* Action items shown inside of the dialog.
*
* @internal
*/
export declare const DialogActionItem: ({ children }: {
children: ReactNode;
}) => JSX.Element;