@playbooks/ui
Version:
An interface library for Playbooks.
30 lines (26 loc) • 1.09 kB
TypeScript
// Generated by dts-bundle-generator v9.5.1
import { TailwindColProps, TailwindContainerProps, 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 ContainerProps = HtmlProps & TailwindContainerProps;
export type GridProps = HtmlProps & {
cols?: string;
};
export type ColProps = HtmlProps & TailwindColProps;
export declare const Container: ({ name, size, tailwind, className, children, ...props }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
export declare const Grid: ({ name, cols, tailwind, className, children, ...props }: GridProps) => import("react/jsx-runtime").JSX.Element;
export declare const Col: ({ name, span, sm, md, lg, xl, xxl, tailwind, className, children, ...props }: ColProps) => import("react/jsx-runtime").JSX.Element;
export {};