@playbooks/ui
Version:
An interface library for Playbooks.
36 lines (32 loc) • 1.83 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 PrefooterProps = HtmlProps;
export type PrefooterBodyProps = HtmlProps;
export type PrefooterPretitleProps = HtmlProps;
export type PrefooterTitleProps = HtmlProps;
export type PrefooterSubtitleProps = HtmlProps;
export type PrefooterTextProps = HtmlProps;
export type PrefooterActionsProps = HtmlProps;
export declare const Prefooter: ({ name, tailwind, className, children, ...props }: PrefooterProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterBody: ({ name, tailwind, className, children, ...props }: PrefooterBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterPretitle: ({ name, tailwind, className, children, ...props }: PrefooterPretitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterTitle: ({ name, size, tailwind, className, children, ...props }: PrefooterTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterSubtitle: ({ name, size, tailwind, className, children, ...props }: PrefooterSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterText: ({ name, tailwind, className, children, ...props }: PrefooterTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterActions: ({ name, tailwind, className, children, ...props }: PrefooterActionsProps) => import("react/jsx-runtime").JSX.Element;
export {};