@fbaconversio/onborda
Version:
The ultimate product tour library for Next.js
19 lines (18 loc) • 424 B
TypeScript
import React from "react";
import { OnbordaProps } from "./types";
/**
* Onborda Component
* @param {OnbordaProps} props
* @constructor
*/
export declare const defaultBreakpoints: {
readonly xs: 480;
readonly sm: 640;
readonly md: 768;
readonly lg: 1024;
readonly xl: 1280;
readonly "2xl": 1536;
readonly "3xl": 1920;
};
declare const Onborda: React.FC<OnbordaProps>;
export default Onborda;