UNPKG

@playbooks/ui

Version:

An interface library for Playbooks.

46 lines (42 loc) 1.82 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 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 Link: (props: any) => import("react/jsx-runtime").JSX.Element; export declare const PrimaryLink: ({ name, size, alt, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element; export declare const AccentLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element; export declare const BorderLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element; export declare const TabLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element; export declare const TextLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element; export declare const LinkShared: ({ alt, prevIcon, prevImg, icon, img, nextIcon, nextImg, taskRunning, tailwind, children, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element; export declare const LinkWrapper: ({ name, alt, href, target, disabled, tailwind, className, children, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element; export {};