@playbooks/ui
Version:
An interface library for Playbooks.
27 lines (23 loc) • 633 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 RouteProps = HtmlProps & {
title?: string;
seo?: any;
};
export declare const Route: ({ name, seo, tailwind, className, children, ...props }: RouteProps) => import("react/jsx-runtime").JSX.Element;
export {};