@playbooks/ui
Version:
An interface library for Playbooks.
50 lines (46 loc) • 2.53 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 CardProps = HtmlProps;
export type CardHeaderProps = HtmlProps;
export type CardIconProps = HtmlProps & {
type?: string;
icon: string;
};
export type CardImgProps = HtmlProps & {
alt?: string;
src: string;
};
export type CardBodyProps = HtmlProps;
export type CardPretitleProps = HtmlProps;
export type CardTitleProps = HtmlProps;
export type CardSubtitleProps = HtmlProps;
export type CardTextProps = HtmlProps;
export type CardFooterProps = HtmlProps;
export type CardActionsProps = HtmlProps;
export declare const Card: ({ name, tailwind, className, children, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardHeader: ({ name, tailwind, className, children, ...props }: CardHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardIcon: ({ name, type, icon, tailwind, className, ...props }: CardIconProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardImg: ({ name, alt, tailwind, className, children, ...props }: CardImgProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardBody: ({ name, tailwind, className, children, ...props }: CardBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardPretitle: ({ name, tailwind, className, children, ...props }: CardPretitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardTitle: ({ name, size, tailwind, className, children, ...props }: CardTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardSubtitle: ({ name, tailwind, className, children, ...props }: CardSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardText: ({ name, tailwind, className, children, ...props }: CardTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardFooter: ({ name, tailwind, className, children, ...props }: CardFooterProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardActions: ({ name, tailwind, className, children, ...props }: CardActionsProps) => import("react/jsx-runtime").JSX.Element;
export {};