UNPKG

@playbooks/ui

Version:

An interface library for Playbooks.

35 lines (31 loc) 1.69 kB
// 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 FontProps = HtmlProps & { id?: string; size?: string | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "sm"; }; export declare const Font: (props: any) => import("react/jsx-runtime").JSX.Element; export declare const H1: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export declare const H2: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export declare const H3: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export declare const H4: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export declare const H5: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export declare const H6: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export declare const P: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export declare const Small: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element; export {};