UNPKG

@playbooks/ui

Version:

An interface library for Playbooks.

40 lines (36 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 FeedbackProps = HtmlProps; export type FeedbackHeaderProps = HtmlProps; export type FeedbackIconProps = HtmlProps & { type?: string; icon: string; }; export type FeedbackBodyProps = HtmlProps; export type FeedbackTitleProps = HtmlProps; export type FeedbackTextProps = HtmlProps; export type FeedbackActionsProps = HtmlProps; export declare const Feedback: ({ name, tailwind, className, children, ...props }: FeedbackProps) => import("react/jsx-runtime").JSX.Element; export declare const FeedbackHeader: ({ name, tailwind, className, children, ...props }: FeedbackHeaderProps) => import("react/jsx-runtime").JSX.Element; export declare const FeedbackIcon: ({ name, type, icon, tailwind, className, ...props }: FeedbackIconProps) => import("react/jsx-runtime").JSX.Element; export declare const FeedbackBody: ({ name, tailwind, className, children, ...props }: FeedbackBodyProps) => import("react/jsx-runtime").JSX.Element; export declare const FeedbackPretitle: ({ name, tailwind, className, children, ...props }: FeedbackTitleProps) => import("react/jsx-runtime").JSX.Element; export declare const FeedbackTitle: ({ name, size, tailwind, className, children, ...props }: FeedbackTitleProps) => import("react/jsx-runtime").JSX.Element; export declare const FeedbackText: ({ name, tailwind, className, children, ...props }: FeedbackTextProps) => import("react/jsx-runtime").JSX.Element; export declare const FeedbackActions: ({ name, tailwind, className, children, ...props }: FeedbackActionsProps) => import("react/jsx-runtime").JSX.Element; export {};