UNPKG

@playbooks/ui

Version:

An interface library for Playbooks.

72 lines (68 loc) 1.98 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 BreadcrumbsProps = HtmlProps; export type BreadcrumbItemProps = HtmlProps & { icon?: string; arrow?: boolean; }; export type BreadcrumbBtnProps = BtnProps & { active?: boolean; onClick: () => any; icon?: string; }; export type BreadcrumbLinkProps = LinkProps & { active?: boolean; href?: string; icon?: string; }; 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 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 Breadcrumbs: ({ name, tailwind, className, children, ...props }: BreadcrumbsProps) => import("react/jsx-runtime").JSX.Element; export declare const BreadcrumbItem: ({ name, icon, arrow, tailwind, className, children, ...props }: BreadcrumbItemProps) => import("react/jsx-runtime").JSX.Element; export declare const BreadcrumbBtn: ({ name, size, active, onClick, tailwind, className, children, ...props }: BreadcrumbBtnProps) => import("react/jsx-runtime").JSX.Element; export declare const BreadcrumbLink: ({ name, size, active, href, tailwind, className, children, ...props }: BreadcrumbLinkProps) => import("react/jsx-runtime").JSX.Element; export {};