@playbooks/ui
Version:
An interface library for Playbooks.
26 lines (22 loc) • 786 B
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 LiPropsstGroup = HtmlProps;
export type LiPropsstItem = HtmlProps;
export declare const ListGroup: ({ name, tailwind, className, children, ...props }: LiPropsstGroup) => import("react/jsx-runtime").JSX.Element;
export declare const ListItem: ({ name, tailwind, className, children, ...props }: LiPropsstItem) => import("react/jsx-runtime").JSX.Element;
export {};