react-custom-tours
Version:
A library with tips that you can attach to blocks on your sites so that users can more easily understand how to use your site
13 lines (12 loc) • 398 B
TypeScript
import { CustomColors, TipDataItem } from '../../shared/types';
type Props = {
children: React.ReactNode;
tips: TipDataItem[];
theme?: 'dark' | 'light';
customColors?: CustomColors;
highlightPadding?: number;
escapeToClose?: boolean;
isHiddenClose?: boolean;
};
declare const Provider: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default Provider;