@playbooks/ui
Version:
An interface library for Playbooks.
34 lines (30 loc) • 1.6 kB
TypeScript
// 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 BadgeProps = HtmlProps & {
type?: string;
size?: string;
};
export declare const Badge: ({ name, type, size, tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const DraftBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const PendingBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const WarningBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const SuccessBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const FinishedBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const ErrorBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const DefaultBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export {};