@playbooks/ui
Version:
An interface library for Playbooks.
53 lines (48 loc) • 2.93 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 IFrameProps = HtmlProps & {
title: string;
src: string;
onLoad?: () => void;
};
export type ImgProps = HtmlProps & {
alt?: string;
src: string;
fetchPriority?: "high" | "low" | "auto";
};
export declare const Article: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Aside: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Blockquote: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
declare const Body$1: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Caption: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Code: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Div: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Figure: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Hr: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Html: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const IFrame: ({ name, tailwind, className, ...props }: IFrameProps) => import("react/jsx-runtime").JSX.Element;
export declare const Img: ({ name, src, alt, tailwind, className, ...props }: ImgProps) => import("react/jsx-runtime").JSX.Element;
export declare const Li: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Main: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Pre: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Span: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Ul: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export {
Body$1 as Body,
};
export {};