UNPKG

@playbooks/ui

Version:

An interface library for Playbooks.

76 lines (72 loc) 2.87 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 BtnProps = HtmlProps & { type?: "button" | "submit" | "reset"; alt?: string; size?: string; active?: boolean; prevIcon?: any; prevImg?: any; icon?: any; img?: any; nextIcon?: any; nextImg?: any; span?: any; disabled?: boolean; taskRunning?: boolean; }; export type FooterProps = HtmlProps; export type FooterHeaderProps = HtmlProps; export type FooterTitleProps = HtmlProps; export type FooterTextProps = HtmlProps; export type FooterBodyProps = HtmlProps; export type FooterListProps = HtmlProps; export type FooterItemProps = HtmlProps; export type FooterBtnProps = BtnProps & { variant?: string; }; export type FooterLinkProps = LinkProps & { variant?: string; }; export type LinkProps = HtmlProps & { alt?: string; active?: boolean; size?: string; prevIcon?: any; prevImg?: any; icon?: any; img?: any; nextIcon?: any; nextImg?: any; span?: any; href?: string; disabled?: boolean; target?: "_self" | "_blank"; taskRunning?: boolean; }; export declare const Footer: ({ name, tailwind, className, children, ...props }: FooterProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterHeader: ({ name, tailwind, className, children, ...props }: FooterHeaderProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterBody: ({ name, tailwind, className, children, ...props }: FooterBodyProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterTitle: ({ name, size, tailwind, className, children, ...props }: FooterTitleProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterText: ({ name, tailwind, className, children, ...props }: FooterTextProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterList: ({ name, tailwind, className, children, ...props }: FooterListProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterItem: ({ name, tailwind, className, children, ...props }: FooterItemProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterBtn: ({ name, tailwind, className, children, ...props }: FooterBtnProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterLink: ({ name, tailwind, className, children, ...props }: FooterLinkProps) => import("react/jsx-runtime").JSX.Element; export declare const FooterFooter: ({ name, tailwind, className, children, ...props }: FooterBodyProps) => import("react/jsx-runtime").JSX.Element; export {};