@atlaskit/onboarding
Version:
An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
20 lines (19 loc) • 559 B
TypeScript
type BlanketProps = {
isTinted?: boolean;
style?: React.CSSProperties;
onBlanketClicked?: () => void;
className?: string;
};
/**
* __Blanket__
*
* A replacement for `@atlaskit/blanket`.
*
* We use this for spotlights instead of `@atlaskit/blanket`
* because spotlights must sit on top of other layered elements,
* such as modals, which have their own blankets.
*
* @internal
*/
declare const Blanket: React.ForwardRefExoticComponent<React.PropsWithoutRef<BlanketProps> & React.RefAttributes<HTMLDivElement>>;
export default Blanket;