UNPKG

tiwi

Version:

React library to create components with Tailwind styles baked in.

6 lines (5 loc) 267 B
import { ComponentType, ReactNode } from "react"; import { Tiwi } from "./types.js"; type JSXFunction = (type: ComponentType, props: Record<string, any> | undefined | null) => ReactNode; export declare function buildTiwi(createElement: JSXFunction): Tiwi; export {};