UNPKG

@playbooks/ui

Version:

An interface library for Playbooks.

28 lines (24 loc) 811 B
// 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 ProgressBarProps = HtmlProps; export type ProgressProps = HtmlProps & { value: number; }; export declare const ProgressBar: ({ name, tailwind, className, children, ...props }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element; export declare const Progress: ({ name, value, tailwind, className, ...props }: ProgressProps) => import("react/jsx-runtime").JSX.Element; export {};