@playbooks/ui
Version:
An interface library for Playbooks.
33 lines (29 loc) • 1.08 kB
TypeScript
// Generated by dts-bundle-generator v9.5.1
import { TailwindProps } from '@ehubbell/html';
export type HtmlProps = TailwindProps & {
id?: string;
ref?: any;
name?: string;
size?: string;
html?: any;
tabIndex?: any;
onClick?: (v?: any) => any;
onMouseEnter?: (v?: any) => any;
onMouseLeave?: (v?: any) => any;
tailwind?: TailwindProps & any;
className?: string;
style?: any;
children?: any;
};
export type PageLoaderProps = HtmlProps & {
title: string;
message: string;
};
export type SectionLoaderProps = HtmlProps & {
title: string;
message: string;
};
export declare const ModalLoader: ({ name, title, message, tailwind, className, children, ...props }: PageLoaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const PageLoader: ({ name, title, message, tailwind, className, children, ...props }: PageLoaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionLoader: ({ name, title, message, tailwind, className, children, ...props }: SectionLoaderProps) => import("react/jsx-runtime").JSX.Element;
export {};