@playbooks/ui
Version:
An interface library for Playbooks.
25 lines (21 loc) • 713 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 SpinnerProps = HtmlProps;
export declare const Oval: ({ name, tailwind, className, ...props }: SpinnerProps) => import("react/jsx-runtime").JSX.Element;
export declare const Puff: ({ name, tailwind, className, ...props }: SpinnerProps) => import("react/jsx-runtime").JSX.Element;
export {};